jquery-ui

jQuery UI Tabs 3 and history plug-in

I'm using Tabs as follows: <div id='tabs'> <ul> <li><a class='tab' href="#tabs_company_info">Company Info</a></li> <li><a class='tab' href="#tabs_contact">Contacts</a></li> <li><a class='tab' href="#tabs_products">Products</a></li> </ul> <div id='tabs_company_info'> ... </div> <div id='tabs_contact'> ... </div> <di...

How to have a jQuery UI tab load a URL/page directly?

I have a set of tabs where the href is the URL I would like to load when the tab is selected. Following the docs I added the following select option. $('#example').tabs({ select: function(event, ui) { var url = $.data(ui.tab, 'load.tabs'); if( url ) { location.href = url; return false; } return true; } }); in a <script> tag ...

filamentgroup - jQuery menu - behavior change - move iPod drilldown to widget

I am trying to use the iPod drilldown menu from the filamentgroup as a widget. http://www.filamentgroup.com/lab/jquery_ipod_style_and_flyout_menus/ They have I designed as a dropdown menu. But I actually need only the iPod drilldown menu part. As a "filemanageing widget". How can this be made possible? ...

How to make JQGrid scroll properly in IE6?

I've got a JQGrid that needs to scroll. It works fine in Firefox, but in IE6, the grid stays stationary while the rest of the content scrolls underneath it. What might be a complicating factor is that the grid is inside tabs, inside a dialog. I've googled all over the place, but I can't find a solution for this problem, so I turn to St...

How to develop this feature with Javascript?

What I want to achieve is as follows: For example, there is a symbol which represents a table on a web page, a user can drag this element to any place on the web page, when the user looses the cursor, a dialogue box will pop up to ask the user to input values of attributes, for example,the number of columns, the number of rows, after th...

jQuery Autocomplete plug-in search configuration

I'm looking into using jQuery autocomplete plug-in to implement user lookup by first or last name. It looks like by default autocomplete looks up words by character sequence no matter its occurrence in a word. So if you have data such as: javascript, asp, haskell and you type in 'as' you will get all three. I would like it to at least m...

Strange jQueryUI dialog error

I have dialog created like this $('#add_error').click(function(e) { $('<div>') .load('/someaction/format/html/') .dialog({ title: 'Some title', modal: true, width: 385, close: function() { $(this).remove(); ...

Dynamically loaded flash movie is on top of jquery dialog: how to change zorder?

A flash movie is loaded on a page via javascript (replaceChild on a div) I add jquery datepicker to a input above this movie. When the datepicker (or other jquery element) is shown, it is shown under the movie (wrong zorder) The element do have "z-index: 99" in its css class How do i bring the jquery element up? [Edit] Theres no s...

The next step towards efficient jQuery...?!

I'm using the below code for a rollover effect, seems to be working okay! What I'm interested in is taking this to the next step in a modular way. What I mean is that rather than stipulate every single possibility, how could I start to produce what I suppose would be a plugin? Many thanks! $(document).ready(function() { $('#damar...

jQuery live() failing with jQuery UI datepicker

Ok, I'm trying to use the FaceBox() plugin for jQuery along with the jQuery UI datepicker(). I've got it to bind to the lightbox'd inputs on the first appearance of the lightbox, but it's not working afterwards. I'm doing the following: $(function() { $('.jQueryCalendar').live('click', function () { $(this).datepicker...

Click and Drag element from one div to another jquery-ui

I have one div that contains a bunch of draggable div objects. This main container is called "floater" and will scroll down the screen in relation to mouse scroll. I also have a div called validtargets, which is populated with a table providing a grid appearance in the background. The draggable objects are given the snap: 'td' tag so ...

jQuery Dialog Modal Loses Style Sheet on Second Load

Hello all, I'm working with jQuery UI and the dialog plugin. I have a Manager Response form that appears in the dialog box that appears when a user clicks on a certain link. What happens is I acquire the ID for that response, do some processing and send back the view that I insert in to a for the dialog box. It works fine the first ...

jquery modal window

Hi , Is there a jquery modal window which on on click on the background doesnt closeup. Thanks. ...

Need to write online circuit builder: please compare/contrast YUI3, GWT, and jQuery... what would YOU use?

I need to write a sophisticated website that does AJax, drag and drop, component re-sizing, with a tree view of all components. If this is controversial, please just close it, but could someone please recommend a good JavaScript Application Framework to use? I know YUI3 is still under development so I'd have to use the tree view from...

How to explode jquery tabs into the whole page

I have a page that looks something like this: +-------------------------------------------+ | | | +----------------------------+ +--------+ | | |main | |sidebar | | | | | |+------+| | | | | ||jquery|| | | | ...

[Jquery UI] - more specific theme roller customization

Hi, I was just wondering if anyone had any experience with more customized/specified theme rolling? I am just getting into jquery UI and I'd like to, for example, roll a theme where the dialog styles differ from the rest of the theme. Thanks for any guidance. ...

Show slider value on the top of the selection - JQuery

Is there a way to show the selected slider value on top of the selection? It doesn't appear to be supported by default. ...

Prevent jquery ui tabs from automatically loading content into the page

Any idea on how i can prevent jquery ui tabs from loading the content inside the page through ajax, and just use the tabs for external links? I've tried http://docs.jquery.com/UI/API/1.7.1/Tabs#...follow_a_tab.27s_URL_instead_of_loading_its_content_via_ajax but does not work, the content is still being loaded... thanks ...

Change background color of JQuery slider

I understand I can set the background color of the value from min to the current slider selection by doing a: #slider .ui-slider-range { background: #88ac0b; } How do I set the background color for the entire slider (not just from the min or max to the selected value) ...

JQuery Slider handle position() doesn't work

I have a div which displays the current value of the slider and the div moves with the slider position. Based on the answer at http://stackoverflow.com/questions/745037/using-offset-and-jquery-slider I came up with the following code: function SliderSetup() { $("#slider").slider({ value:0, min: -10, ...