// JavaScript Document $(document).ready(function() { $('div.resultat').bind('click', function() { document.location.href = $("#" + $(this).attr('id') + " a.product_link").attr('href'); }); }); function filtre_objets () { var url_params = ''; if ( document.getElementById('types').value != '' ) { url_params += '/type-'+$('#types').find('option:selected').text()+','+$('#types').val(); } location.href='/ru/objects'+url_params; }