Trigger Ajax With Jquery Click Event
I have two drop down menus, one of which I am trying to replace with radio buttons using jquery. The second box is updated via AJAX with new options any time the user makes a selec
Solution 1:
When you change the value of a Combo Box via js, it doesn't trigger the onChange function nor onClick and so on.
You'll have to use the same code you use to update Combo 2 with Combo 1 where you update Combo 1 with the Radio.
I suggest to place that code inside another function, and call that function from both places.
Hope it helps.
Post a Comment for "Trigger Ajax With Jquery Click Event"