Created
November 9, 2015 13:58
-
-
Save narainsagar/8725a7f2684681a6e8c4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Let's have a look at this html in the dom: | |
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-12"> | |
<a href="https://facebook.com/" target="_blank"> | |
<div class="app-logo" style="width: 716px; height: 60px; background: none;"></div> | |
</a> | |
</div> | |
jquery code: | |
$('.app-logo').closest('a').attr('href', 'https://www.google.com/'); | |
That's all. | |
/* | |
Creator: Narain Sagar (Nine) | |
Created: 09-11-2015 | |
Cheers! Thanks. | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment