How Do I Stop My Search Bar From Opening A New Tab?
How do i stop my search bar from opening a new tab? I dont see whats making it do that? Heres my php code. I've been having a couple issues with this search bar recently... Heres m
Solution 1:
you need to remove remove target='_blank'
Solution 2:
Replace this
$z->item(0)->childNodes->item(0)->nodeValue .
"' target='_blank'>" .
by this
$z->item(0)->childNodes->item(0)->nodeValue .
"'>" .
tag target="_blank"
make opening link in new window
Post a Comment for "How Do I Stop My Search Bar From Opening A New Tab?"