Find jQuery code to open all hyperlinks on a page to open in separate browser window. It is indeed a good feature as this ensures that user still be able to read/go through current page contents.
Feel free to contact me for any help related to jQuery, I will gladly help you.
$(document).ready(function() {
$('a').attr('target', '_blank');
});
See result belowFeel free to contact me for any help related to jQuery, I will gladly help you.

No comments:
Post a Comment