[jQuery] [jQuery Tabs] Select tab from link

2009-12-11 Thread StephenJacob
Good day everyone. I'm using Jquery Tabs UI and loading content via Ajax. I'm now trying to select one of the tabs from a link on another page. I'm not having any luck with the example on the jquery docs page. When I assign the #standard as an ID on the A tag it does not load the content of that

[jQuery] Jquery Tabs FOUC (Hide inactive tab panel)

2009-11-16 Thread StephenJacob
Does anyone have any experience with the Jquery tab system? Below is the instructions they've suggested to help prevent FOUC. Obviously, by adding this CSS code all it does is hide the div's completely. I'm trying to find out how to hide the inactive Tabs upon page load and then remove/activate t

Re: [jQuery] Jquery Tabs

2009-11-12 Thread stworthy
try to use this tabs plugin http://www.etmvc.cn/project/show/63 http://www.etmvc.cn/project/show/63 StephenJacob wrote: > > I'm having an issue, which seems common, when loading tab content > using the Jquery Tab plugin. It seems the content loads on the page > prior to being "tabbed". This ca

Re: [jQuery] jquery tabs not on the same row! help please!

2009-11-12 Thread Richard D. Worth
You're missing ui.tabs.css - Richard 2009/11/12 AdyLim > Hi there, > > I'm just starting to learn jquery and trying to implement tabs onto my > aspx page...The problem is that the tabs are showing up one on top of > anotherhow do i get the tabs to line up in a row? I'm using > jquery 1.2.6

Re: [jQuery] jquery tabs not on the same row! help please!

2009-11-12 Thread Andrei Eftimie
You have a lot of you "facts" wrong. > Floats are a pain as soon as you try to use proper positionning (relative / > absolute) along with proper overflow. Nope, they are not. Floats do not have any effect on positioning. Positioning works the way it should around and inside floats. (Except for a

[jQuery] Jquery Tabs

2009-11-12 Thread StephenJacob
I'm having an issue, which seems common, when loading tab content using the Jquery Tab plugin. It seems the content loads on the page prior to being "tabbed". This causes the page to jump around for a split second before the content loads completely. Is there any way of fixing this issue? http://

Re: [jQuery] jquery tabs not on the same row! help please!

2009-11-12 Thread Michel Belleville
Floats are a pain as soon as you try to use proper positionning (relative / absolute) along with proper overflow. Floats should be used to place content alongside inline content to make said content flow around the floating element, adapting to its shape. It's perfect for, say, inserting a visual

Re: [jQuery] jquery tabs not on the same row! help please!

2009-11-12 Thread Andrei Eftimie
Sorry for thread-hijacking, but why would you say that floats are complicated? Right now (as in current browser implementations) floats work really reliably. (with 1 small IE bug with an easy fix) inline-block needs to be hacked in multiple browsers 2009/11/12 Michel Belleville : > Also, you'd b

Re: [jQuery] jquery tabs not on the same row! help please!

2009-11-12 Thread Michel Belleville
Also, you'd better not use floating positioning (easier on the very short term, a lot more complicated in mid-long term). Michel Belleville 2009/11/12 Andrei Eftimie > This is a CSS issue, not really related to jQuery. > > Do something like this in your CSS file: > > /* Forcing the ul to take

Re: [jQuery] jquery tabs not on the same row! help please!

2009-11-12 Thread Michel Belleville
This is a css question rather than jQuery, though the answer goes as follow : 1. you're using an ul with li inside 2. ul work as block elements containing li which are block elements too 3. block elements pile up on top of one another unless told otherwise What you need is made them act

Re: [jQuery] jquery tabs not on the same row! help please!

2009-11-12 Thread Andrei Eftimie
This is a CSS issue, not really related to jQuery. Do something like this in your CSS file: /* Forcing the ul to take not of its floated children. */ #tabs ul { display: inline-block; overflow: hidden; } #tabs ul { display: block; } /* Floating the children */ #tabs li { float: left; } 2009/11

[jQuery] jquery tabs not on the same row! help please!

2009-11-12 Thread AdyLim
Hi there, I'm just starting to learn jquery and trying to implement tabs onto my aspx page...The problem is that the tabs are showing up one on top of anotherhow do i get the tabs to line up in a row? I'm using jquery 1.2.6...all the js's (ui.core.js, ui.tabs.js) are included in my masterpage

[jQuery] jQuery Tabs -- Long content in hidden tabs

2009-11-09 Thread ripcurlksm
I am using jQuery tabs and when I have very long content within the tabs, my browsers scroll bar reflects the content in the tab with the most content. Example, "Tab 1" & "Tab 3" has a very long scroll bar, even though it has no content (because of Tab 2) and you can scroll down through the empty

[jQuery] jQuery Tabs - retain tabs on browser refresh

2009-10-20 Thread Chris
I have created a page that uses the jQuery UI tabs widget and an accordion. I'm creating tabs dynamically when an item is clicked in the accordion and loading a page into the tab. I have seen that there is a cookie facility for the tabs to provide the ability to retain the selected tab but I'm won

[jQuery] jquery tabs

2009-10-09 Thread ngreenwood6
I have created a tabbed item. There are 2 tabs on called first the other second. Now when tab1 is clicked it should show the tab1 item and the same for tab2. This is working however I have run into a little problem. Once the page loads it should show what is on the tabs which is also working fine

[jQuery] Jquery tabs load external file that uses a jquery plugin

2009-10-06 Thread dylanmac
I have a set of jqueryui tabs that, when clicked, load in their content dynamically. It works great, except that one of the pages uses a jquery plugin itself. This results in two issues: - The main page that holds the tabs throws an error when loaded because there is js that refers to elements th

[jQuery] jquery tabs :: ul li a animation

2009-08-10 Thread kenny
Hello all, I am using the tabs with a fade in/out effect for the "panels", it works nice. $(function() { $("#tabs").tabs({ collapsible: true,fx: { opacity: 'toggle'}, selected: -1 }); }); What I would like to do is a type

[jQuery] jquery tabs doesn't work under IE

2009-08-05 Thread bary white
here is my site: http://testlayout.cba.pl/ tabs don't work under IE - all div's are visible. I should add some code? I thought that jquery works under all browsers...

[jQuery] jQuery Tabs Not Working in ASP

2009-06-26 Thread KaJe
I'm having a problem getting jQuery tabs to work. I'm using a master file along with an aspx that includes a placeholder. Relevant Parts of Master File: $(function(){ // Tabs $('#traveltabs').tabs(); }); . . . On the .aspx file: Home

[jQuery] Jquery Tabs moves to 2nd row when tab is clicked on Fireforx 3

2009-06-25 Thread son
Hi. Can anybody help me on this. I have 2 issues with the JQuery Tabs. 1.) I am using a JQuery tabs with 4 tabs which works well with IE6 & 7 and safari. But not perfectly in Fireforx. When it first loaded, the tabs are lined up correctly, and can see the first tab's content. When I click the 2

[jQuery] Jquery Tabs moves to 2nd row when tab is clicked on Fireforx 3

2009-06-25 Thread son
Hi. Can anybody help me on this. I have 2 issues with the JQuery Tabs. 1.) I am using a JQuery tabs with 4 tabs which works well with IE6 & 7 and safari. But not perfectly in Fireforx. When it first loaded, the tabs are lined up correctly, and can see the first tab's content. When I click the 2

[jQuery] jquery tabs (loading remote content and form submit)

2009-06-24 Thread psycho_gamer
Hello, I am incredibly new to the world of jquery. What I am trying to do is create tabs (using the tabs plug-in) that load dynamic content via AJAX (so it makes a call to a jsp). What this does is this loads a new part of a form. What I want to do is when the user clicks on a new tab, I also wa

[jQuery] jquery tabs

2009-06-24 Thread psychoGamer
Hi, I am new to jquery but am quite familiar with JavaScript. What I am trying to do is create tabs (using the tabs plug-in) that load dynamic content via AJAX (so it makes a call to a jsp). What this does is this loads a new part of a form. What I want to do is when the user clicks on a new ta

[jQuery] jquery tabs (ajax tabs with a form submit)

2009-06-24 Thread psycho_gamer
Hello, I am incredibly new to the world of jquery. What I am trying to do is create tabs (using the tabs plug-in) that load dynamic content via AJAX (so it makes a call to a jsp). What this does is this loads a new part of a form. What I want to do is when the user clicks on a new tab, I also

[jQuery] jquery tabs 3 - problems to send the hash to url

2009-06-04 Thread Apfel007
Hi, my first posting in this group. Hope someone can give me a hint. Is it right, that there is no hash sended to the url in jquery "TABS 3" by default ? means the hash is not visible in the url? I'm new on this stuff ... I've read that I can send the hash with this to url.. select: function (ev

[jQuery] Jquery Tabs problem with Tabs width

2009-05-20 Thread kobi
Hi All, I need to spread tabs evenly on one row and make the text wrap, when I am using fixed width for .ui-tabs-nav li the panel and nav are not aligned. I don't want the tabs to shift to the next line. PLEASE HELP!! Kobi

[jQuery] Jquery Tabs, want to remove white line under selected tab, without removing line under unselected tab

2009-03-26 Thread Martin
Hello, My Jquery Tags are working perfectly. But the only problem I am now experiencing is the selected tabs have a 1px white line underneath them. I have matched the colour of the tab and pane, but the 1px line underneath makes the tabs look separate from the pane. Has anyone encountered this

[jQuery] Jquery Tabs, want to remove white line under selected tab

2009-03-26 Thread Martin
Hello, My Jquery Tags are working perfectly. But the only problem I am now experiencing is the selected tabs have a 1px white line underneath them. I have matched the colour of the tab and pane, but the 1px line underneath makes the tabs look separate from the pane. Has anyone encountered this

[jQuery] Jquery Tabs shown Horizontally in Firefox but shown Vertically in IE...?

2009-03-25 Thread Martin
Hello, I am using Jquery Tabs in a webpage and the problem I am having is that the tabs are shown correctly in Firefox (Horizontally), but incorrectly in IE (Vertically). Does anyone know a simple solution to this problem? My html is very vanilla (see below) Tab 1 Title Tab 2 Title Tab 1

[jQuery] jQuery tabs problem with language

2009-02-27 Thread hitautodestruct
Hi, I have a problem implementing jQuery tabs using hebrew content in the li and div elements. I get the error "jQuery UI Tabs: Mismatching fragment identifier" when clicking on the tabs. Everything works perfect when the text is english but when I have hebrew in it it returns the above error.

[jQuery] jquery tabs ajax mode

2009-01-29 Thread jampov
Hello. I need some help with tabs jQuery v2.7.4 of stilbuero. I want to use Ajax Mode and open the links in a given container. For example: Tab one Tab two Tab three ... Can you tell me how to do it? Sorry for my bad English.

[jQuery] jQuery Tabs

2009-01-14 Thread Eric Garside
Anyone having trouble with getting tab event callbacks to work? I'm on jQuery 1.3 and jQuery UI 1.6rc4 and none of the tab event callbacks are working.

[jQuery] Jquery Tabs issue, linking to another tab from within the same document...

2008-12-30 Thread Ted
I'm having a problem with Jquery's tab plugin. Specifically, I've got a page with a couple of tabs. On that page, in one of the tabs, is a link to another tab. However, the link doesn't work. Additionally, I've noticed that on my main navigation, if I'm on the page with multiple tabs, and I click

[jQuery] jQuery Tabs -- Are disjointed tabs possible?

2008-12-09 Thread ripcurlksm
Is this possible with jQuery tabs? To seperate certain tabs and push them to the right? http://www.nabble.com/file/p20924502/Untitled-1.jpg -- View this message in context: http://www.nabble.com/jQuery-TabsAre-disjointed-tabs-possible--tp20924502s27240p20924502.html Sent from the jQuery Ge

[jQuery] jQuery Tabs -- Are disjointed tabs possible?.

2008-12-09 Thread ripcurlksm
-- View this message in context: http://www.nabble.com/jQuery-TabsAre-disjointed-tabs-possible-.-tp20924475s27240p20924475.html Sent from the jQuery General Discussion mailing list archive at Nabble.com.

[jQuery] Jquery Tabs 2 CSS styles?

2008-12-09 Thread toopix
Hi, I am using JQuery tabs and I have a problem as I want to sets of tabs on the same page, I need to specify 2 different css styles for the tabs specifically the container width. I read a reply by your to a similar issue in google groups but didnt understand it as im quite new to css and JQuery.

[jQuery] jQuery tabs - anyway to fire the script prior to onload?

2008-12-08 Thread Illah
I use jQuery tabs for a carousel (see link below) but the problem is the script doesn't fire until the page is fully loaded. On slower connections, or depending on if my ad network is piping through giant ads, this can make for some long, awkward moments when all the divs are revealed until the s

[jQuery] jQuery tabs: want ajax call to only fire once

2008-11-19 Thread nemozob
I'm using jQuery tabs and wanted to load the non-active tab content via ajax. It looks like the default method loads the remote content each time. What I'd like to do is have it load only once when the respective tab is clicked. I haven't explored other options yet but I imagine I can write a cus

[jQuery] jQuery Tabs: CSS Bug

2008-11-12 Thread ripcurlksm
I am having problems with the gray line that is supposed to appear at the bottom of the tabs. Instead it is appearing at the top of the tabs as shown here: http://www.nabble.com/file/p20471209/tabs-bug.jpg I have a copy of this displaying correctly, when I add it to my site it gets tweaked. Iv

[jQuery] jquery tabs on ajaxed content

2008-10-27 Thread gryzzly
I have this markup structure: Some Title ...some content... more spans like this (around 100, depends on particular ajax page I am loading, might change due to the content changes) Some Title ...some content...

[jQuery] jquery tabs cannot put inside the tab

2008-09-23 Thread tyliong
Hi, I have followed the tutorial here http://apricotstudios.wordpress.com/2008/08/29/jquery-tabs-tutorial/ everything is working except one thing when i put another div inside the tab it doesn't display the div at all? is this a limitation of jquery or have i done something fundamentally wrong?

[jQuery] jQuery tabs not working in IE. Functioning in FF.

2008-09-12 Thread godsgimp
Hi my name is Craig and I am a copywriter who has never done any previous web design (so be kind) In the past two weeks I have been trying to build a website for my girlfriend who is a photographer. I have used a plugin called stepCarousel from dynamic drive for the gallery- after some misses I f

[jQuery] Jquery Tabs inside a Tab

2008-08-28 Thread Sridhar Gowda
Hi, I am using http://cse-mjmcl.cse.bris.ac.uk/blog/jQueryNestedMenus/nested.html for jquery nested tabs. But for my requirement i need to selected default "1st sub tab" when i click on parent tab. $('#ddetail_tabs ul').tabs({ selected: 0}); this works only for the parent tab. not for the sub

[jQuery] jQuery Tabs - Sync rotation with a 'loader' animation?

2008-07-13 Thread Illah
I'm using tabs to facilitate a carousel to rotate content on my site, and I wanted to add an animated GIF 'loader' graphic that is timed with the loader. On Firefox 3 this works perfectly - it seems to be smart enough to not start the GIF animation until the script shows each frame. With other b

[jQuery] jQuery Tabs

2008-07-08 Thread Wooty
Does anyone have a COMPLETE set of css elements and working HTML for the UI tabs? I have spent the last two days trying to get the CSS to work for a simple set of tabs and it just doesnt want to play (all my fault - I'm useless with CSS). My page looks like this (its basically the example page).

[jQuery] jQuery Tabs

2008-07-08 Thread Wooty
RE: My earlier post Never mind - problem(s) solved... P

[jQuery] jQuery tabs and cookies

2008-06-15 Thread Isaak Malik
Dear list, I am trying to remember the last selected tab using cookies but it doesn't seem to work no matter what I do. My code is the following: $(function() { $('#tabCont > ul').tabs({fx: {opacity: 'toggle', duration: 500, cookie: {expires: 7, path: '/'}}}); }); Should this be enough to ga

[jQuery] jquery tabs: removing old loaded content from DOM

2008-05-04 Thread [EMAIL PROTECTED]
Hi, If I have JQuery Tabs, say I select tab 2, it loads HTML, and then I select tab 3. How when selecting tab 3 can I remove from the DOM the content loaded by tab 2? - Dave

[jQuery] jQuery tabs - create 'modal' or 'force-focused' tab?

2008-04-16 Thread MichaelEvangelista
I am creating a simple application that allows uploading of images in a popup window, when completing a form. The popup returns the filename to the the parent form when closed, works great. But I'd like to move this function to a jquery tab instead. Has anyone had success, or care to share exampl

[jQuery] jquery tabs bind to tabselect

2008-04-04 Thread [EMAIL PROTECTED]
Hello, I'm trying to incorporate jquery tabs to a project at work. I read in the documentation that you can bind to stages of the tab. I would like to bind to the tabselect stage i.e. $('.ui-tabs-nav').bind('tabsselect', function(event, ui) { ui.instance // internal widget instance ui.opt

[jQuery] jquery tabs: For ajax tabs, how do I trigger event handler when tab loads?

2008-03-07 Thread [EMAIL PROTECTED]
Hi, I'm using Jquery tabs from here -- http://www.stilbuero.de/2006/05/13/accessible-unobtrusive-javascript-tabs-with-jquery/. I'm using the AJAX feature so that clicking on a tab loads content from another page on my server. How do I set up an event handler so that when the content loads into t

[jQuery] jQuery Tabs - Can I Do This?

2008-01-05 Thread Matt Quackenbush
I'm using the Tabs plugin, and have a question. My First Tab My Second Tab http://www.someothersite.com/";>My Third Tab // my content // my other content Is it possible to get that third tab to actually go to the off-site URL when clicked? I tried this, but the link was

[jQuery] JQuery Tabs not loading on first click

2007-11-23 Thread sukhminder
Tabs are not loading on the first click. I have a link which is like: Headlines when user clicks on this it calls the following function: function loadTabs(filename) { $('head').append(''); $.getScri

[jQuery] jquery Tabs plugin

2007-11-15 Thread [EMAIL PROTECTED]
hi, someone has used this plugin here?, I've looked that at Firefox it works great, but at I.explorer 6 it doen't. Someone know to fix it? I've yet posted a bug at jquery bugtrack site.

[jQuery] jQuery Tabs onmouseover

2007-09-19 Thread jm
I was wondering if there was a way that I could have the jQuery tabs plugin (http://stilbuero.de/jquery/tabs/) select a tab onmouseover. I didn't find anything when I tried a few searches here or on Google. Thanks!

[jQuery] jQuery tabs and onClick

2007-09-03 Thread Massimiliano Marini
Hi all, I'm using the amazing jQuery tabs plugin, but I'm having problem with this code: $('#container-1').tabs(2,{ fxFade: true, fxSpeed: 'fast', onClick: function() { alert("Clicked!");

[jQuery] jQuery Tabs Alignment

2007-07-19 Thread [EMAIL PROTECTED]
On my website: http://www.rose-hulman.edu/~bryantms/prizes.html (temporary host) As you can see the content on each tab is not rendering properly in IE (6 or 7). It appears to the right of the tabs themselves. Does anyone know how to resolve this issue? This renders properly in Firefox, so I'

[jQuery] jQuery Tabs Issue in Internet Explorer

2007-07-19 Thread [EMAIL PROTECTED]
If this is a duplicate post, I apologize. The website I'm working on is here: http://www.rose-hulman.edu/~bryantms/prizes.html (temporary host) I'm working with jQuery tabs found here: http://www.stilbuero.de/ As you can see in IE, it is not displaying properly. I believe this is CSS relate

[jQuery] jQuery Tabs in IE and Firefox Issues

2007-07-19 Thread [EMAIL PROTECTED]
I'm having an issue with my site: http://www.rose-hulman.edu/~bryantms/prizes.html (temporary host) As you can see, the Tabs aren't aligning properly in IE and there is a gap in Firefox. In IE, the content appears to the right of the Tabs. In Firefox, there is a large gap underneath that I woul

[jQuery] jQuery Tabs with AJAX and href="javascript:..."

2007-06-18 Thread [EMAIL PROTECTED]
Hi, I am using the jquery tabs with dynamically generated divs (the AJAX variant): link ... When the user clicks on the tab nav, I want to display a loading image in the content area (=the dynamically generated div). I tried to bind an onclick function ("$('tablink').click(...))

[jQuery] jquery tabs: creating tabs without triggering onShow action

2007-05-22 Thread [EMAIL PROTECTED]
Hi, I noticed when I create my JQuery tabs, the "onShow" callback function is automatically invoked. $('#container').tabs(tab_id, { remote: true, fxFade: true, fxSpeed: 'fast', onShow: function(cl

[jQuery] jquery tabs: editing tab title in place

2007-05-21 Thread [EMAIL PROTECTED]
Hi, Regarding JQuery tabs, I would like the ability to click on the text of the selected tab, and have it replaced by a text field where I can edit the text that composes the tab. Then, if I click outside the text field or hit "Enter", what was typed in the text field would be the new tab text.

[jQuery] jquery tabs and IE 6

2007-05-16 Thread jafar1978
Hi, I have been using JQuery and it is great. I have a problem which is related to viewing more than anything else. When I click on the tab the text of the div appears on the right of the last tab rather under the tabs. When I use FireFox the text is displayed correctly. I have tried using a tab

[jQuery] jquery tabs: changing color of unselected tabs

2007-05-15 Thread [EMAIL PROTECTED]
Hi, This should be simple, I know, but I'm having problems. Using the default stylesheet that accompanies the Jquery Tabs example, how do I change the color of unselected links? I tried adding a "color:" directive to the ".tabs-nav a" class, but to no avail. The links still appear as the stand

[jQuery] jquery tabs: adding a tab on the fly

2007-05-14 Thread [EMAIL PROTECTED]
Hi, Regarding JQuery Tabs (http://stilbuero.de/2006/05/13/accessible- unobtrusive-javascript-tabs-with-jquery/), is there an elegant way to add a new tab after the page has loaded and the tabs have already been constructed? That is, I have already made this call $('#container').

[jQuery] jquery tabs: setting tab width on IE

2007-05-11 Thread [EMAIL PROTECTED]
Hi, Regarding the JQuery tabs plug-in, I want to have variable width tabs, depending on how long the tab text is. So, using the default style sheet from the example (http://www.stilbuero.de/jquery/tabs/ jquery.tabs.css), I removed the "width: 64px;" line of the following CSS block .tabs-nav a {

[jQuery] jquery tabs: custom html structure?

2007-05-10 Thread [EMAIL PROTECTED]
Hi, I wanted to get clarification around the "Custom HTML structure" of the JQuery tabs plug-in. Specifically, it is mentioned in the docs "If some HTML structure is required that differs from the default one" Does this mean for the tabs themselves or the container holding the content after yo

[jQuery] jquery tabs: How to make the tab contain both text and a small image

2007-05-09 Thread [EMAIL PROTECTED]
Hi, With regards to the plugin (http://stilbuero.de/jquery/tabs/), I want the text of one of my tabs to contain both text and a small, clickable "x" image on the same line. Is this possible? It seems if I put anything more advanced than

[jQuery] jQuery Tabs: activate on rollover instead of click?

2007-04-26 Thread litzinger
Is it possible to change Karl's tab plugin to activate the tabs and their content when rolling over a tab, instead of clicking on it? I browsed the source and didn't see anything that stuck out as a config option to change this, and I'd like to avoid changing the core.