Using Page Info > Forms, I see 2 methods: get & post. Inside 'post' is all
the info concerning radio buttons. What I wonder now is, how do I take this
information and make it so that it selects the 'Always ask for my e-mail
address and password' radio button.
The field name is: 'LoginOptions' and its current value is '3'. The label
is: 'Always ask for my e-mail address and password'.
--
View this message in context: http://www.nabble.com/Script-to-auto-select-a-specific-radio-button-from-a-group-tf3718441.html#a10403282
Sent from the GreaseMonkey List mailing list archive at Nabble.com.
Just need some help so I can write my own script. Firefox's Page Info
won't be helpful if you're using Minefield; since it's been
redesigned. I guess 2.0's interface hasn't changed so you can use Page
Info there to see what I'm talking about.
Of course, there's always Page Source (Ctrl+U) if you're handy w/
that.
I'm just trying to constantly set a radio button value w/o manually
setting/clicking it myself.
I guess this is the new link: http://login.live.com/login.srf?id=2 New
Hotmail Login page
--
View this message in context: http://www.nabble.com/Script-to-auto-select-a-specific-radio-button-from-a-group-tf3718441.html#a11513397
var loginOptions = document.getElementsByName("LoginOptions");
if (!loginOptions.length) return;
loginOptions[2].checked = true;
--
LouCypher
So once again, thanks.
--
View this message in context: http://www.nabble.com/Script-to-auto-select-a-specific-radio-button-from-a-group-tf3718441.html#a11526039