How To Modify the Menu Width in jQueryUI Autocomplete

Author: , June 18th, 2013

How To Implement Hybrid jQuery UI Dialogs

Author: , June 19th, 2012

jQuery

HTML

How To Implement A Very Simple Ajax Loader Using jQueryUI

Author: , September 23rd, 2011

GET Resources http://code.jquery.com/jquery-1.6.4.min.js http://jqueryui.com/resources/download/jquery-ui-1.10.1.custom.zip LOAD Resources

HTML Substitute your own loader graphic from http://www.ajaxload.info/

CSS

JS Show the spinner called “first”: jQuery(‘#Spinner-first’).fadeIn(); Hide the spinner called “first”: jQuery(‘#Spinner-first’).fadeOut(); Hide all spinners that start with an ID of “Spinner”: jQuery(‘[id^=Spinner]’).fadeOut(); That’s All Folks…

Code Angels

Author: , July 15th, 2011

I must say that there are still some kind souls in this world. Today I had an email conversation with the author of the jQuery UI dialogWrapper plugin. With great patience this code angel helped me understand the situation much better. Thank you for taking the time to help me out! http://mostthingsweb.com/ http://code.google.com/p/dialogwrapper/ I have […]

How To Fully Destroy jQuery UI Dialog Boxes

Author: , July 11th, 2011

I was having issues with jQuery UI dialogs being hidden and not fully removed. Had same issues with both native dialog and the dialogwrapper plugin. The following code would hide, but not fully remove the div, for whatever reason:

So this is what I used instead:

!! UPDATE: After being coached by the […]

How To Disable A Button In A jQuery UI Dialog

Author: , May 17th, 2011

Important Note: This solution REQUIRES jQuery UI 1.8 or better and the .button() plugin/widget (contained in the full download):

Original Post: http://stackoverflow.com/questions/3646408/how-can-i-disable-a-button-on-a-jquery-ui-dialog

How To Use jEditable With Custom Field Types

Author: , May 15th, 2011

There are many GREAT jQuery plugins out there, written by brilliant people, and freely distributed as open source. I have simply taken a few of them and glued them together: jQuery, jEditable and showPassword. MANY hours were spent putting all these parts together into a cohesive, functional unit, along with adding some enhanced error handling […]

How To Enable Live Hover With jQuery UI Icons

Author: , May 8th, 2011

The HTML:

The CSS:

The jQuery:

How To Get jQuery UI Datepicker To Insert Today’s Date

Author: , May 5th, 2011

Click HERE for the original post.

How To Load jQuery UI Tabs From JSON

Author: , May 4th, 2011

Use the “dataFilter” Ajax option given the following server reply: { status: 17, result: “You are not logged in” } [code] var $tabs = jQuery(‘#menutabs’).tabs({ ajaxOptions: { dataFilter: function(server_json_reply){ var data = jQuery.parseJSON(server_json_reply); if (data.status == 17) { alert(‘Your session has timed out and you have been logged off.’); window.location = “/”; } return data.result; […]