Jump to content

infoitmanoj

Members
  • Posts

    6
  • Joined

  • Last visited

Everything posted by infoitmanoj

  1. I have tried below code .. its working fine and textbox value should be passing in same form ....but i need one textbox to be one form and another text box to be in another form value should be passed.... $(document).ready(function() { $("#query2").blur(function(e) { $("#search_head #query").val($(this).val()); }); }); <form id="search_head"> <input id="query" /> <input id="query2" placeholder="Blur me" value="Hi there" /> </form>
  2. I have tried below code .. its working fine and textbox value should be passing in same form ....but i need one textbox to be one form and another text box to be in another form value should be passed.... $(document).ready(function() { $("#query2").blur(function(e) { $("#search_head #query").val($(this).val()); }); }); <form id="search_head"> <input id="query" /> <input id="query2" placeholder="Blur me" value="Hi there" /> </form>
  3. i need one form textbox value change, In that value pass into another form textbox in my website....
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.