vote up 3 vote down star
1

My code is here

$("a[href=$.jqURL.url()]").hide();

$.jqURL.url() return current page url.

But this code don't work

Is it possible to select dynamically?

flag

72% accept rate

1 Answer

vote up 7 vote down check

You need to build the selector as a string:

$("a[href=" + $.jqURL.url() + "]").hide();
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.