[jQuery] Re: Jquery UI 1.7.1 Tabs - Close open tab on mouseout from overall tab group

2009-03-26 Thread acamar
will disappear if I move my mouse back up on the > selected tab first otherwise it never dissapears until another tab is > selected. I suspect that some sort of mouseout event would need to be > attached to the currently showing div or all the divs. I am new to > this so any help w

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

2009-03-26 Thread acamar
Hello again Martin It's CSS question as well :). It would be helpful if you reveal your code. But as I suppose the margin-bottom: -1px on tabs may help resolve the problem. On 26 мар, 14:56, Martin wrote: > Hello, > > My Jquery Tags are working perfectly.  But the only problem I am now > experi

[jQuery] Re: Jquery UI 1.7.1 Tabs - Close open tab on mouseout from overall tab group

2009-03-25 Thread acamar
In context of mouseout event handler the $tabs variable is not visible. So try $('#tabs').mouseout(function () { $("#tabs").tabs('option', 'selected', -1); }); that should help. On 25 мар, 13:44, jq noob wrote: > I am currently using > > $(document).ready(function() > { > var $tabs =

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

2009-03-25 Thread acamar
Hi! It's not jQuery related question but CSS. Can you show your CSS rules for the tabs? On 25 мар, 19:59, Martin wrote: > 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 (Vertical

[jQuery] Re: ui tabs how to link to a new page

2009-03-23 Thread acamar
I need the same. I have tabs which switch on mouseover and when clicked I need this work as a common link. Unfortunately, tabs plugin does not generate click event. Therefore I wrote small code which get an URL from rel attr of the ancors and points the browser to the new location.