Possible Duplicate:
How to change the href for a hyperlink using jQuery
I'm using Drupal and system generate my title.
E.G.
<a class="jquery-once-3-processed" id="quicktabs-tab-galeri-1"
href="/?q=node&qt-galeri=1#qt-galeri">NEWS</a>
I want change this href
link via jQuery. How can i do this? Thank you.
$("#quicktabs-tab-galeri-1").attr("href", new_href);
That should do the trick for you.
$('#quicktabs-tab-galeri-1').attr('href', 'YOUR_NEW_HREF');
This selects the element with id quicktabs-tab-galeri-1 and changes its href attribute.
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