vote up 1 vote down star
1

Hi I'm trying to set the value of an input field using a bookmarklet so when I open the bookmark it will automatically set the field name? Any idea how to do this? Would like to set the field txtEmail. Thanks!

This is the HTML of the website:

<input id="txtEmail" class="popUpEmail" type="text" onblur="populateTheEmailField(this);" onclick="blankTheEmailField(this);" value="asdfsa@gmail.com"/>

I'm happy to contact me

flag

0% accept rate

1 Answer

vote up 0 vote down
javascript: var f = document.getElementById("textEmail"); f.value = "Tagada"; void(0);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.