Firefox has this great ability to drag and drop links to it’s bookmark toolbar. But if it is a regular link only it will open on the same window/tab that is in use.However there is a workaround there. Here is the steps I took:
- Create an html from a wysiwyg editor. For superfast creation of links.
- Instead of the usual <a href=”http://www.domain.com“>name to remember here</a> link tag use
<a href=”javascript: void window.open(‘http://www.domain.com‘);”>name to remember here</a> - Open the created file into firefox and drag the links created to the toolbar.
This will open a new window from now on. Don’t forget the void keyword on the beginning of the function since forgetting this would result to the current window to be thrown whatever the window.open function return.
Here I have created a link to upload my pictures in imageshack and a link for new post for this blog.

***update#1
you could also drag any link to the bookmarks toolbar and edit the link to accept a javacript function. :)

Advertisement
Thanks!
Comment by Xappy! — 9 2008f April, 2008 @ 1:35 am |
Thanks, that’s just what I was looking for.
Comment by paplaukes — 30 2008f April, 2008 @ 3:53 pm |
Just found this – brilliant, thanks!!
Comment by Simon — 26 2009f March, 2009 @ 1:36 am |
the javascript method does NOT work for toolbar folders when you say ‘open all in tabs. It works for individual items, one click at a time.
When you open all in tabs, you get windows with a URL of javascript…
Hitting enter opens a new tab.
Comment by Sherwood Botsford — 13 2011f February, 2011 @ 3:58 am |