jQuery - opening all links on a page - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T09:12:22Z http://stackoverflow.com/feeds/question/260072 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/260072/jquery-opening-all-links-on-a-page 1 jQuery - opening all links on a page Jason 2008-11-03T21:43:28Z 2008-11-03T22:03:22Z <p>I'm trying to learn jQuery, to make up for my anemic javascript skills.</p> <p>As a test project, I have a page full of links, and I want to have a button on the page open all the links in new tabs. The links all have target="_blank" attributes.</p> <p>I'm using this</p> <pre><code> $('button').click(function() { $('a').click(); );} </code></pre> <p>I've tested the selector syntax by modifying the css of the links, so I'm sure that is ok. What do I need to change in order to get the link to open?</p> http://stackoverflow.com/questions/260072/jquery-opening-all-links-on-a-page/260097#260097 8 Answer by Owen for jQuery - opening all links on a page Owen 2008-11-03T21:49:33Z 2008-11-03T22:03:22Z <p>you can't manipulate tabs via javascript (you can ask a link to open in a new window, you just can't tell it to open in a tab). what you might want to try if you want to try is something like this:</p> <pre><code>$('button').click(function() { $('a').each(function() { window.open($(this).attr('href') ); }); }); </code></pre> <p>essentially, when <code>&lt;button&gt;</code> is clicked, for each <code>&lt;a&gt;</code> element, pass the <code>href</code> value to window.open. or basically, piles of open windows assuming you have no pop up blocker :)</p> <p>your current code basically says, when you press <code>&lt;button&gt;</code>, activate the <code>onclick()</code> handler of all <code>&lt;a&gt;</code> elements.</p> <p><strong>edit</strong>: in response to comments, compare this code that mimics the OP's functionality:</p> <pre><code>$('a').click(function() { // assign an event to a.onclick window.open($(this).attr('href') ); }); $('button').click(function() { // when we press &lt;button&gt;, trigger a.onclick $('a').click(); }); </code></pre> <p>because we declared an <code>onclick()</code> functionality first, we now have the same behaviour as my original code. (piles of open windows)</p>