$(document).ready( function(){ $('.referentieblok').click( function(e){ document.location.href='/'; return false; } ); $('#sorter').change( function(e){ $.ajax({ url: '/js/global.php', type: 'POST', data:{ c: 'sorteer', s: $(this).val(), g: $(this).attr('rel'), u: document.location.href }, success: function(h){ var loc = document.location.href; var ptr = /\?p=([a-z0-9]+)/ig; var newloc = loc.replace(ptr, ''); document.location.href = newloc; } }); } ); $('#sortcolor').change( function(e){ $.ajax({ url: '/js/global.php', type: 'POST', data:{ c: 'sorteer_kleur', s: $(this).val(), g: $(this).attr('rel') }, success: function(h){ var loc = document.location.href; var ptr = /\?p=([a-z0-9]+)/ig; var newloc = loc.replace(ptr, ''); document.location.href = newloc; } }); } ); } );