If you have a situation where you would like to change href atribute (URL, that is), but can’t access the code directly, you can definitely try using jQuery prop():
1 2 3 |
jQuery(document).ready(function($){ $(".home container a").prop("href", "http://google.com/"); }); |
So all you need to do is target <a> element within container and this should do the trick.