Provided I cannot edit the HTML code at all how would I do this?
<input type="text" id="Identifier"
class="inputControlFlexWidth" value="" tabindex="9" size="25"
name="texthole">
I’m guessing this has to be a timed event such as
setInterval(ObserveInputValue(), 100);
Because the input can happen at any time.
I then want to use this text to update a URL.
Thanks.
Edit:
<input id="ServiceRequestEditForm.CustomObject6 Name.hidden" type="hidden" value=""
tabindex="-1" name="ServiceRequestEditForm.CustomObject6 Name.hidden">
One way is
Explanation: When the input loses focus, grab the value of the field.
Example: http://jsfiddle.net/4DtUh/
EDIT
As per the comments…
@Interstellar_Coder is right about spaces inside the
id.So, instead of using the
idas the “hook”, you could use thenameattribute:Example 2: http://jsfiddle.net/4DtUh/10/