I am a jQuery newbie and was wondering whether it is possible to pass in a TextBox as an argument for a jQuery function. Something like this:
<input id="MyInput" value="" type="text" >
//how/what to pass in this function to change the value of the input?
function SetValueTextBox(? ?)
{
//change the value of the MyInput Textbox
}
Ofcourse i have more than 1 TextBox where I would like to use this hence the question.
You can do this (not 100% sure what you looking for):