infoitmanoj Posted October 21, 2015 Share Posted October 21, 2015 i need one form textbox value change, In that value pass into another form textbox in my website.... Quote Link to comment Share on other sites More sharing options...
benanamen Posted October 21, 2015 Share Posted October 21, 2015 (edited) What have you tried? Edited October 21, 2015 by benanamen Quote Link to comment Share on other sites More sharing options...
infoitmanoj Posted October 21, 2015 Author Share Posted October 21, 2015 (edited) 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> Edited October 21, 2015 by infoitmanoj Quote Link to comment Share on other sites More sharing options...
infoitmanoj Posted October 21, 2015 Author Share Posted October 21, 2015 What have you tried? 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> Quote Link to comment Share on other sites More sharing options...
maxxd Posted October 21, 2015 Share Posted October 21, 2015 Are you trying to pass values between forms on different pages? If so, submit the first form and use PHP to grab the value before building the other form on the second page. If you want to move the value into another form on the same page, just change the JQuery target. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.