jquery window.unload does not trigger now in ver 18
the event is no longer triggered when the browser window is close. previous versions do.
Mehr Details zum System
Installierte Plugins
- Google Update
- Logitech Harmony Remote Plugin
- NPRuntime Script Plug-in Library for Java(TM) Deploy
- 5.1.10411.0
- Adobe PDF Plug-In For Firefox and Netscape 10.1.3
- iTunes Detector Plug-in
- Shockwave Flash 10.3 r183
- RealJukebox Netscape Plugin
- RealPlayer(tm) LiveConnect-Enabled Plug-In
- 12.0.1.647
- BlackBerry WebSL Browser Plug-In
- wpidetector
- IE Tab Plug-in for Mozilla/Firefox
- The QuickTime Plugin allows you to view a wide variety of multimedia content in Web pages. For more information, visit the QuickTime Web site.
- ActiveTouch General Plugin Container Version 103
- Office Plugin for Netscape Navigator
Anwendung
- User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.16) Gecko/20110319 Firefox/3.6.16 (.NET CLR 3.5.30729) FBSMTWB
Weitere Informationen
A good place to ask advice about web development is at the MozillaZine "Web Development/Standards Evangelism" forum.
The helpers at that forum are more knowledgeable about web development issues.
You need to register at the MozillaZine forum site in order to post at that forum.
There are other things that need your attention.
You have a corrupted user agent that identifies you as Firefox/3.6.16
- Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.16) Gecko/20110319 Firefox/3.6.16 (.NET CLR 3.5.30729) FBSMTWB
See:
Fragesteller
I am using a portable version of firefox, we have another development machine that has the full 18 version that we detected the $(window).unload event doesnt trigger. I uninstalled the 18 version and replaced with a portable version 16 and now the jquery event is fired.
Fragesteller
I will visit the mozillazine site you suggested.
Fragesteller
went to mozilline, there are two possible issues: the unload or the post.
$(window).unload(function(){ $.post('/ffc/myjqpost.pl') ;}) ;
Fragesteller
resorted to native javascript via html: <body onunload="function here" > ; it Worked!!