if(location.href.match(/online/i)){
$("button.btn_mod").attr("type","button");

function updateClick(){
$("button.btn_mod").click(function (){
$.get(main_url+"online/?show="+$('select[name=show] :selected').val()+"&sort="+$('select[name=sort] :selected').val()+"&order="+$('select[name=order] :selected').val(),function(updatelist) {

newlist = $(updatelist).find("#active_list").html();

$("#active_list").html(newlist);
$("button.btn_mod").attr("type","button");
updateClick();
});
});
}
updateClick();
}