MDanz Posted October 15, 2009 Share Posted October 15, 2009 is this possible? like as i type in the top textfield it also types in the bottom.. Link to comment https://forums.phpfreaks.com/topic/177786-solved-type-in-two-text-fields-at-same-time/ Share on other sites More sharing options...
Garethp Posted October 15, 2009 Share Posted October 15, 2009 This is javascript. But yes. On the textfeild put onchange="document.formname.othertextname.value=this.value" Link to comment https://forums.phpfreaks.com/topic/177786-solved-type-in-two-text-fields-at-same-time/#findComment-937453 Share on other sites More sharing options...
MDanz Posted October 15, 2009 Author Share Posted October 15, 2009 having trouble getting this working.. <form action='link.php' method='post' name='changer' target='link_frame'> <span class="style1">URL</span> <input type="text" name="url" onchange="document.changer2.url2.value=this.value"/> <input type="submit" name="Submit" value="Submit" /> </form> <form action='menu.php' method='post' name='changer2'> <span class="style1">URL</span> <input type="text" name="url2" /> <input type="submit" name="Submit" value="Submit" /> </form> Link to comment https://forums.phpfreaks.com/topic/177786-solved-type-in-two-text-fields-at-same-time/#findComment-937459 Share on other sites More sharing options...
mrMarcus Posted October 15, 2009 Share Posted October 15, 2009 this is definitely Javascript .. will get your solution 10x quicker in that forum than in the PHP forum. Link to comment https://forums.phpfreaks.com/topic/177786-solved-type-in-two-text-fields-at-same-time/#findComment-937460 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.