jquery-tabs

Google Maps and jQuery Tabs

Hello All, I have slight problem with Google maps included in simple jQuery Tabs. Below I pasted the code: jQuery: $(document).ready(function() { //Default Action $(".tab_content").hide(); $("ul.tabs li:first").addClass("active").show(); $(".tab_content:first").show(); //On Click Event $("ul.tabs li").click(function() { $("u...

Switching between JQuery Tabs in IE 8

Hi, Im having an IE issue with JQuery/JQuery UI tabs. The tabs are loaded via ajax with asyn set to true and everything works fine the first time the tab loads but when you start switching between tabs the following code does not work correctly: $("#PaymentNotify .EventMsg").html("Some text here"); This ofcourse is very simple code an...

How do you make the tab that is selected the default tab for idtabs

I am using the idtabs script from http://www.sunsean.com/idTabs/ and so far they work awesome. However, I am looking for a way to make it so that when the page reloads, the same tab that was selected is still open. So far i'm thinking there must be a way to set the .selected class to assign the default tab. I'm a huge js rookie so any id...

target="_blank" link using jQuery UI Tabs

Hello, I would like to use my existing Jquery UI tabs to shoot my users off to a new browser window Unfortunately adding a target="_blank" to the jquery tab code doesn't work. Does anyone have any ideas? Here is the default Tab Code found here <div id="tabs"> <ul> <li><a href="#tabs-1">Nunc tincidunt</a></li> <li><a href="#t...

Jquery flowplayer - tabs - content inside div tags not displaying

Hey guys, I'm looking for a simple example of JQuery tabs in which I am planning to show two different forms. I came across this example http://flowplayer.org/tools/demos/tabs/index.htm which is perfect for my needs. So I implemented the simple example. The code in question is: <div class="panes"> <div>First tab content. Tab con...

JQuery : Can i have 2 tabs in the same page?

Hi, i'm trying to have 2 tabs in the same page, but the first works great, and the second doesn't work at all. It is possible to have 2 tabs in the same page, if yes, how can i manage that? Both have the same code ... example : $('#tab1').tabs(); and the other $('#tab2').tabs(); Thank you My HTML: <section> <div id="radioprog"> ...

Jquery tab selection on asp.net postback

Hi, I have an asp.net page with some JQuery tabs. Everything works ok. I added a dropdownlist in one of the tabs, that causes a postback. After the postback I want the same tab to be selected. I initialize the tabs as: <script type="text/javascript"> $(document).ready(function() { var $myTabs = $(".tabsDiv").tabs(); </script>...

What files should be included to use jQuery tabs?

I'm having yet another wtf moment with jQuery. I am importing the following files (among others) <script src="../../Scripts/jquery-1.4.1.min.js" type="text/javascript"></script> <script src="../../Scripts/jquery.ui.core.min.js" type="text/javascript"></script> <script src="../../Scripts/jquery.ui.tabs.min.js" type="text/javascript"></s...

Howto clone/copy/mirror a jquery tab

How can i make jquery tabs, with exactly the same tabs on top AND bottom of the content? So these 2 tabs combined, and MIRRORing eachother: http://jqueryui.com/demos/tabs/default.html http://jqueryui.com/demos/tabs/bottom.html ...

jQuery core tabs script - multiple instances?

I have the following jQuery script on my site to switch tabs without reloading the page. I'm using jQuery core v1.3.2 (NOT jQuery UI) <!-- JS --> <script type="text/javascript"> $(function() { var tabify = function () { var id = $('#content > div').hide().attr('aria-hidden', 'true').filter(window.location.hash ||...

jQuery tabs. Open certain tab from a certain position. Possible?

I am using jQuery tabs on my site and have an article on one of the tabs and comments on the other. Would it be possible to link from the article tab to the comments tab and open it from a certain position defined with an "a name" attribute? ...

ASP.Net Forms: jQuery Tabs with iFrame content --> eventvalidation error

Hello, I really don't know how to start the title of my post, but i'll try my very best to give out my best explanation of the issue. Here it goes: I'm using jQuery tabs to open up multiple data. Each tab, when opened dynamically, loads up an iframe that contains another asp.net page and does what a normal page does. I open the tabs th...

jQuery UI Tabs Minimal Styling

In my application, I have so far avoided needing to load any jQuery stylesheets at all, but the UI-tabs plugin seems to need some CSS to work at all. OK, fine, but the examples have you loading ALL the UI styles and, perhaps more important, the tab styling totally ruins my own look and feel. Is there any place to learn how I can provid...

Django jQuery views user question

I seem to be stuck and am not sure which is the best direction to take. I have a few apps in my project and would like to combine three views into one template. I have a userprofile in which I would like to display his info, latest news feeds and also his photos Through this I am making use of jQuery tabs I have defined my three tabs...

jQuery load page only once on tab click

I have a page with some tabs on it and upon clicking on certain tabs, other pages are loaded dynamically. The only problem is that these pages load every time the tabs are clicked on. How do I make them load only once, at the first click? The code that I use is this: $(document).ready(function(){ $(".tab-content").hide(); $("#o...

Nested jQuery UI Tabs back button history

I'm using the jQuery Address plug-in to make my jQuery UI tabs bookmarkable and compliant to back button history. Works great. However, I was wondering if it was possible to do provide the same sort of 'deep linking' for nested tabs? E.g., I have the following: <div id="tabs"> <ul class="links"> <li><a href="#one">main tab one</a>...

Nested JQuery Tabs

I've using the JQuery Address Plugin (http://www.asual.com/jquery/address/) to make my JQuery UI Tabs bookmarkable and compliant with the browser forward/back buttons. Works great. I was wondering if it was possible to do provide the same sort of deep linking for nested tabs? E.g., I have the following: <div id="tabs"> <ul class="...

jQuery tabs, dynamically binding to click event on currently selected tab

I'm trying to bind to the click event of the currently selected tab with jQuery tabs. I'm dynamically creating tabs so I need to do live binding. The idea is that I want to reload the current tab if it's clicked on again. I tried binding in the select event, but it seems this event doesn't fire for click on the already selected tab. I ...

use jquery .tabs() - content overlay page

I am VERY new to JQuery. Just trying to get a feel. I like the tab feature demoed here: http://jqueryui.com/demos/tabs/#mouseover I really like this, however I would like it to act a bit more like a Menu. Particurally I would like the tab content to apear OVER the content on the page (like a menu). Also, just as when I rollover the tabs...

jquery tab ajax load

I am following the jqquery docs on loading content via ajax. My tabs looks like following and the content returned from my rails app via the ajax calls are inserted correctly, with the exception of the third tab where I try to load the content into an existing div "ediv". When I click on this tab I basically see the raw html, if I copy ...