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?
You need to build the selector as a string:
$("a[href=" + $.jqURL.url() + "]").hide();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With