I want all anchor links with a certain href to open in a stripped popup window. I'm unable to add a class or an onclick event to the anchor tag so I need like jQuery to check if a开发者_Go百科 link with that certain href has been clicked, and in that case open a stripped popup window. Anyone?
check this
jQuery("a[href*=example.com]").click(function{
// your functionality
});
精彩评论