Examples on documentation doesn't work
Try this http://docs.jquery.com/UI/Effects/Explode The example aren't working, the jquery library is not loaded correctly. And like this there are more examples in the documentation wich doesn't work. Please fix it! Thanks
UI 1.8 Date Picker: parseDate() error
Hello All, I am using the jQuery UI Date Picker and our client is having a very particular issue. We are formatting dates with the mask 'mm/dd/yy' and are running into an issue when typing the date '11/01/2008'. After typing '11/01/2' the date picker decides that this is enough to create a date and updates the date picker to '11/01/2002'. It also removes the date from the text field. It seems that the internal method _doKeyUp() is calling parseDate() and parseDate() is causing the partial string
Problem with saving tab in cookie in jQuery tabs
Problem with saving tab in cookie in jQuery tabs
Firefox display always the second tab
Hello, In IE everything works fine. In FF 3.6 the initial selected tab is always the second, even if I specify to select the first. Is this a bug? Help me please! Thank you & bye
DatePicker : on top in small screen
Hello, Since I work with the version 1.8 of JQuery UI, I've got some problems with the display of my datepicker. When the page is small, the picker is always on the top of the screen. By example, my page height is 320px and my input is 135px from top. So, my page is too small to show the datepicker under the input, but the bottom of the page is already empty ! It will be a problem to check all pages to check that the height of the "HTML tag" is enough to show the picker under the input. Is it possible
accordion fails
Hi, I have an accordion set up as follows: <div class="fx-accordion" > <h3><a href="#">Question 1</a></h3> <div> Answer 1 </div> </div> I'm then using livequery to initialise these accordions (they come in through ajax!) as follows: jQuery('.fx-accordion').livequery(function() { jQuery(this).accordion(); } ); The accordion seems to be generating perfectly well. However - whenever I click an item to expand, I'm getting the following error: jQuery.easing[specialEasing
UI Tabs - Loading pages recursively with ajax that contain tabs
Hello, I'm trying to load pages recursively that contain tabs via ajax tab call. I got a main page that loads a childpage and the childpage loads the childchildpage. All pages contain tabs. The childpage works correctly after I added the ctabs via the tabload event $('#tabs').bind('tabsload', function(event, ui) { //alert("tabs loaded"); $("#ctabs").tabs(); }); My problem is that this approach does not work with the chidchildpage, because the javascript will not be executed in the childpage. Is