<form id="formfilter" method="post" enctype="multipart/form-data"><div> Genre:<br />
<select name="filterGenre" id="filterGenre"><option value="all" selected="selected">All</option><option value='1'>Education</option><option value='2'>Entertainment</option><option value='3'>Documentary</option><option value='4'>Short Content</option><option value='5'>Animation</option></select></div></form>
data
:
{
filterGenre
:
txt_filter
}
function loadData(page){
$.ajax({
type: "POST",
url: "ajax_network_programs_shortlist.php", data: { page: page, filterGenre: txt_filter }, success: function(msg){
$("#inner-main_content3").ajaxComplete(function(event, request, settings){
$("#inner-main_content3").html(msg); }); } }); }please advise, big thanks.