Using jQuery to target a specific link in the navigation -
i working dynamic navigation , need able target 1 specific link open in new window.
i need jquery this.
for example able target navigation item of education has link of http://www.foo.com/education , have open in new window when click on it.
would appreciate assistance.
thanks.
try:
$("a[href='http://www.foo.com/education']").attr('target', '_blank');
Comments
Post a Comment