[jQuery] Newbie .load question
Hi,
I fairly new to jquery. I have a simple load function, which works
fine.
<script>
function getinfo(link) {
$("#loading").ajaxStart(function(){
$(this).show();
});
$("#info").css("cursor","pointer").load(link);
}
</script>
Now I would like to have a select drop-down list, which when changed
would pass the select value to the getinfo() function so that I can
use this value when loading items from the link, something like this;
$("#info").css("cursor","pointer").load(link, {select: 5});
thanks