i just updated firefox and a script quit working :(

in Script development
Subscribe to i just updated firefox and a script quit working :( 6 posts, 2 voices



sdfghjklkjhg... Scriptwright
FirefoxWindows

Im not sure if this is fixable in the script or a change needs to be made in greasemonkey or if it is a bug in firefox
This was the only reason I was still using ff3 and not 3.5
It worked prior to firefox 3.0.12

Error: this.parentNode.username is undefined
Source file: /Mozilla/Firefox/Profiles/diteset5.default/extensions/%7Be4a8a97b-f2ed-450b-b12d-ee082ba24781%7D/components/greasemonkey.js
Line: 389

The script:
http://userscripts.org/scripts/show/14966
If anyone finds a solution I'm sure the script owner would like to know it; post it here:
http://userscripts.org/topics/26190

 
GIJoe Scriptwright
SeamonkeyMacintosh

May be you use an add-ons or a script that corrupt the page.

 
sdfghjklkjhg... Scriptwright
FirefoxWindows

The error occurs when you try to change accounts.

 
GIJoe Scriptwright
SeamonkeyMacintosh

edit the source and try to replace:

name="gmSelectLogin" "><option>
by
name="gmSelectLogin"><option>

 
sdfghjklkjhg... Scriptwright
FirefoxWindows

still does not work
surprised that the extra quote did not make an error
Edit: I appreciate you taking the time to go through the code

 
sdfghjklkjhg... Scriptwright
FirefoxWindows

i figured it out
lines 60-63
i assigned some ids
and changed the lines to

Id('gmuser').value = un;
Id('gmpass').value = pw;
Id('gmalgn').value = al;
Id('gmlgnf').submit();

and added the function
function Id(id){
	return document.getElementById(id);
}