/ Published in: jQuery
Passes first option value as param to another dynamic select and loads dynamic select without page refresh.
Expand |
Embed | Plain Text
jQuery("#yourselect").change(function() { var id = jQuery(this).val(); if(id != "") { jQuery("#yourdivwhereselectloads").load("load.php?parameter=" + id); } });
You need to login to post a comment.
