Jump to content

What would the code look like for this?


Orionsbelter

Recommended Posts

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

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);         
    }        
});

​

 

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/

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.