jQuery - opening all links on a page - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T09:12:22Zhttp://stackoverflow.com/feeds/question/260072http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/260072/jquery-opening-all-links-on-a-page1jQuery - opening all links on a pageJason2008-11-03T21:43:28Z2008-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#2600978Answer by Owen for jQuery - opening all links on a pageOwen2008-11-03T21:49:33Z2008-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><button></code> is clicked, for each <code><a></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><button></code>, activate the <code>onclick()</code> handler of all <code><a></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 <button>, 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>