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 Quote Link to comment https://forums.phpfreaks.com/topic/267932-what-would-the-code-look-like-for-this/ Share on other sites More sharing options...
Spring 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); } }); Quote 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/ Quote 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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.