What is target="_new"? validator giving error..
Posted
by jitendra
on Stack Overflow
See other posts from Stack Overflow
or by jitendra
Published on 2010-03-17T04:01:05Z
Indexed on
2010/03/17
4:11 UTC
Read the original article
Hit count: 249
What is target="_new"
? validator giving error..
How to do this with jquery bcoz Validator giving error
on same page i have
target="_new"
and target="_blank"
target="_new"
is in that form code which i received from email newsletter company
I'm using this for target="_blank"
$(function() {
$('a[href^=http]').click( function() {
window.open(this.href);
return false;
});
});
What should i do for target="_new"
© Stack Overflow or respective owner