I trying to make a simple image gallery, where I have several radio button groups to filter the search results.(I am pretty new to jquery, and started learning it today, so please be patient.)
$('input:radio:checked').each(function(){
searchCriteria
[this.name]=this.value;
});
$.post('testResults.php',searchCriteria,displayResult);