Return to Snippet

Revision: 33376
at October 8, 2010 07:26 by vagrantradio


Initial Code
jQuery("#yourselect").change(function() {
		var id = jQuery(this).val();
		if(id != "") {
			jQuery("#yourdivwhereselectloads").load("load.php?parameter=" + id);
		}
	});

Initial URL


Initial Description
Passes first option value as param to another dynamic select and loads dynamic select without page refresh.

Initial Title
Dynamic Select with Parameter

Initial Tags


Initial Language
jQuery