I'd like to use an image map (specifically, a U.S. state map) to perform an AJAX call with jQuery.
I've been successful performing the call with a select list in a form... because the serialize method will pass name-value pairs from the form. However, I'm not sure how to pass name-value pairs outside a form... i.e. from the image map.
Here's my jQuery code that works with the form:
$('#launch').click(function(event){
$('#results').show();
$('#results').load('http://myprogram',
$('form').serialize()
);
});
The serialize method passes the state fips code in for the selected state.
What are my options for passing the state fips code from the map when a state is clicked?
Thanks!