style name has attribute jquery url contain

name - jquery id value



jquery: si url contiene#work entonces haz algo (2)

Intenté escribir una secuencia de comandos que me permite cargar ciertos eventos cuando ingreso una URL específica.

Mi código se ve así:

$(function(){ var url = window.location.pathname; $("url:contains(''#Work'')").animate({"left": "250"}, "slow"); });

Pero no funciona. ¿Alguna sugerencia? Cualquier ayuda es apreciada.


window.location.href está llevando la URL a una variable, por lo que no puede buscar #Work usando ese método. Tratar:

var url = window.location.href; if (url.search("#Work") >= 0) { //found it, now do something }


$(function() { if ( document.location.href.indexOf(''#Work'') > -1 ) { $(''#elementID'').animate({"left": "250"}, "slow"); } });