Orionsbelter Posted September 3, 2012 Share Posted September 3, 2012 I'm trying to code a small part using javascript where if the user selects an option with the value of '0' on a html menu it will automatically select a value of '0' on another menu on the page how could this been done? i'm new to javascript and i'm struggling any help would be apperciated. thanks Link to comment https://forums.phpfreaks.com/topic/267932-what-would-the-code-look-like-for-this/ Share on other sites More sharing options...
Guest Posted September 3, 2012 Share Posted September 3, 2012 We will assume the menus have the Id's of menu1 and menu2. Please feel free to share a better way if you have one! I'm no expert in jquery. $("#menu1").change(function() { val = $(this).val(); if(val == 0 ){ $("#menu2").val(0); } }); Link to comment https://forums.phpfreaks.com/topic/267932-what-would-the-code-look-like-for-this/#findComment-1374873 Share on other sites More sharing options...
ignace Posted September 3, 2012 Share Posted September 3, 2012 Or if you just want it copy another: $('#menu1, #menu2').change(function(e) { var $this = $(this), other = $($this.attr('id') === 'menu2' ? '#menu1' : '#menu2'); other.val($this.val()); }); http://jsfiddle.net/DdCpX/ Link to comment https://forums.phpfreaks.com/topic/267932-what-would-the-code-look-like-for-this/#findComment-1374926 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.