Showing posts with label popup. Show all posts
Showing posts with label popup. Show all posts
Thursday, March 11, 2010
window.open popup in IE7 gets "invalid argument" error
Learned from webdeveloper.com to avoid putting spaces in the window title parameter of window.open.
Thursday, October 29, 2009
Ajax popups on Firefox
I was working on fixing an Ajax popup that wasn't displaying on Firefox. Saw that the script was erroring-out on this line:
So now the popup appears, but it shows blank on Firefox (fine on IE). The problem had to do with setting .innerText. Need to use .innerHTML or .textContent for Firefox. Got that from this thread.
event.cancelBubble = true;Found the solution near the bottom of this thread.
So now the popup appears, but it shows blank on Firefox (fine on IE). The problem had to do with setting .innerText. Need to use .innerHTML or .textContent for Firefox. Got that from this thread.
Subscribe to:
Posts (Atom)