I have an input field that calls the "inputInlineHint (self)" function when blurring and focusing. He also passes by himself ...
<input type="text" id="one" class="textbox" value="Your Name" onfocus="inputInlineHint(self);" onblur="inputInlineHint(self);" />
Now I would like to get the current value of the field:
function inputInlineHint(e) {
var theValue = '';
}
Hope you guys can help me with this ... should be pretty simple, but I'm new to jquery.
Thanks in advance!
source
share