indexing - Does Google follow jQuery "click" window.open as if they were anchor links? -


i have click function opens new window instead of using anchor tag href attribute. if don't use anchor tag, google still crawl page , index if did?

$(".link").click(function(){ var page_name  = (this.id); var luw_window = window.open("/_www/more_info.php?page="+page_name,"luw_page", "left=1,top=1"); luw_window.focus(); return false; }); 

use rel="nofollow"

eg:

<a href="url" rel="nofollow">link text</a>  

Comments