|
Hi. I was using the latest build available today (May 19 2012) to get the renaming to stick.
When I opened a group of tabs ("Open all in tabs"), the tabs already open were closed.
I have now discovered that the same happens with the latest version downloaded...
Started by makondo on
, 11 posts
by 3 people.
Answer Snippets (Read the full thread at garyr):
Use latest dev-build
http://tmp.garyr.net/help/#Events_-_tab_opening
set Open tabs from: Group: Opening all in tabs closes open tabs Posted: Sat May 19, 2012 5:27 am Admin
Joined: Thu Aug 04, 200....
|
|
I am horrible at debugging and am totally confused as to why this won't work. Here is my situation:
I wrote a function to open several links into tabs and then perform a very simple operation on them. It wasn't working as I had anticipated so I rewrote...
Started by baiano on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Var theArray = new Array(); for(var i = 0; i < 10; i++) { theArray[i] = i * 10; } setTimeout("func(theArray[4])", 2000); function... .
Is this what you're trying to do? I tried this on my firebug console and it printed out "I have 40" after two seconds .
|
|
I know I can read the URL of the current page, but is it possible to read the url's of all open tabs?
Thanks!
Started by Joel M. on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Sort of like the "continue session" feature of most modern browsers .
What I wanted to do was a little app that allowed me to store my open tabs through and reopen the tabs.
For security reasons.
|
Ask your Facebook Friends
|
How can I open a tab and load a link via ajax from another tab. Eg:
User clicks link inside #tab_a #tab_a hides #tab_b shows with .loading applied Content is loaded via ajax into #tab_b .loading removed from #tab_b I'm using Jquery UI tabs
Thanks!
Started by Rick on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
$(".tab_content a").live("click", function(){ $("#tab_container").tabs('select', 1); // switch to other tab $("#service").loadAssuming "tab....
Willson, but the jquery ui tabs docs set me off in the right direction.
|
|
In C#, can I get the number of opened tabs?
Started by BeFy on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Likewise, I would not expect this information to be exposed unless you are... .
Did you check Selectors API ? (maybe)
C# generally runs at the server (unless you are talking about Silverlight etc), so there will be no way of knowing much about the client .
|
|
If I have 10 tabs opened, I have to close each one using ":q" separately. How can I close them all at once?
Started by vito on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Shortest/simplest/fastest way would....
That can be done with the following command (in normal or escape mode):
:tabdo :q
"tabdo" apparently executes the command for all the open tabs.
Qall
This closes all tabs and open buffers.
|
|
Hi, Does anyone know how to open multiple URL's in a single browser. Instead of opening multiple windows, I want the urls to open in tabs in IE. I am trying to approach this using JavaScript.
Thanks in advance.
Started by Greg on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
(By the way, Firefox, Chrome and Opera ....
It's a user preference, like phoenix said.
This may open tabs, but it may open windows instead.
Browser tabs, the only thing you can do is add the target="_blank" attribute to links.
|
|
There are several sites I use (such as Tumblr) that use popups to post content. When they open in a new tab, the layout of these little popups is blown up because they fill an entire page.
I've seen other copies of Safari 4 act as expected, but I can'...
Started by Trey Piepmeier on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Have you tried this:
defaults write.
I've tried switch that controls whether or not content is opened in a new tab.
That gets through and some links, for whatever reason, open a new window rather than tab.
|
|
Hi Folks,
I know as long as Firefox has the "New pages should be opened in - a new tab" selected, the following code will open specified urls in new tabs to the firefox window last selected.
firefox '<url here>'
Works great. However with many tabs...
Started by Chasester on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Addresses part (A) of your requirements:
firefox google.com & firefox -new-tab yahoo.com & firefox -new-tab.
|
|
I'm currently using this simple command to open web sites from the command line:
open http://example.com
but when I open two, even doing
open http://example.com http://example.org
they open in separate Safari windows. How can I open them in the same window...
Started by J. Pablo Fernández on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Here's how to change Safari's general settings to open new URLs in new tabs: http://superuser.com/questions/8859/make-safari-open-new-links-in-existing-windows-as-a-tab-rather-than-a-new-window -- Tell Safari to open....
|