2009-12-10 2 views

Répondre

1
$(function() { 
    if(window.location.hash.indexOf('something') !== -1) { 
     $('div#feature').hide(); 
    } 
}); 
+0

méchant, si facile: @) – Andy

0

En vérifiant le window.location.hash.

if (window.location.hash == "something") $("#featured").hide(); 
Questions connexes