J'ai besoin du code pour cacher le hashtag dans l'URL dans jQuery; Je travaille sur un OnePageSite et je souhaite obtenir "www.mysite.it" et non "www.mysite.it/index.php#hashtag" en cliquant sur un lien. Ceci est un morceau de code pour Mootools 1.x; Y at-il un moyen de faire la même chose avec jQuery? Merci d'avance. Cordialement.cacher hashtag url avec jquery
if(window.location.href.indexOf('#')>-1) {
window.location.replace(window.location.href.substr(0,window.location.href.indexOf('#')));
}
* "Je souhaite obtenir" www.mysite.it "et non" www.mysite.it/index.php#hashtag "en cliquant sur un lien" * Ce code vous donnera "www.mysite.it/ index.php ", pas" www.mysite.it ". –
Oui, vous avez raison. Pardon. Une idée pour obtenir ce dont j'ai besoin? – bobighorus