jQuery UI is the official jQuery user interface library. It provides interactions, widgets, effects, and theming for creating highly interactive web applications.
344
votes
18answers
131k views
Remove close button on jQueryUI Dialog?
How do I remove the close button (the X in the top right corner) on a dialog box created by jQueryUI?
278
votes
6answers
91k views
Downloading jQuery CSS from Google's CDN
I am planning on using Google to download the jQuery lib for both UI and Core. My question is, do they allow me to download the CSS for it or should I have to host it myself?
Also if I use Google to ...
270
votes
3answers
89k views
Are there hosted jQuery UI themes anywhere? [duplicate]
Possible Duplicate:
Downloading jQuery CSS from Google's CDN
I'm using Google-hosted jQuery and jQueryUI, but I'm wondering if there are hosted jQueryUI themes anywhere? I'd like to ...
180
votes
18answers
106k views
jQuery UI Dialog with ASP.NET button postback
I have a jQuery UI Dialog working great on my ASP.NET page:
jQuery(function() {
jQuery("#dialog").dialog({
draggable: true,
resizable: true,
show: 'Transfer',
...
154
votes
5answers
144k views
Check if checkbox is checked with jQuery
How can I check if a checkbox in a checkbox array is checked using the id of the checkbox array?
I am using the following code, but it always returns the count of checked checkboxes regardless of id.
...
136
votes
20answers
111k views
jQuery UI DatePicker to show month year only
I am using jQuery date picker to display the calendar all over my app. I want to know if I can use it to display the month and year (May 2010) and not the calendar?
126
votes
27answers
195k views
How can I disable a button in a jQuery dialog from a function?
I have a jQuery dialog that requires the user to enter certain information. In this form, I have a "continue" button. I would like this "continue" button to only be enabled once all the fields have ...
122
votes
10answers
210k views
slide right to left?
I would like to have a div go from collapsed to expanded (and vice versa), but do so from right to left. Most everything I see out there is always left to right.
117
votes
15answers
193k views
jQuery UI DatePicker - Change Date Format
I am using the UI DatePicker from jQuery UI as the stand alone picker.. i have this code
<div id="datepicker"></div>
And the follow JS
$('#datepicker').datepicker();
When i try to ...
116
votes
10answers
80k views
How to disable text selection using jQuery?
Does jQuery or jQuery-UI have any functionality to disable text selection for given document elements?
114
votes
16answers
75k views
jquery UI dialog: how to initialize without a title bar?
Is it possible to open a jQuery UI Dialog without a title bar?
Thanks!
114
votes
9answers
53k views
Can the jQuery UI Datepicker be made to disable Saturdays and Sundays (and holidays)?
I use a datepicker for choosing an appointment day. I already set the date range to be only for the next month. That works fine. I want to exclude Saturdays and Sundays from the available choices. ...
107
votes
10answers
45k views
jQueryUI: how can I custom-format the Autocomplete plug-in results?
I'm using jQuery UI Autocomplete plug-in. Is there a way to highlight search character sequence in drop-down results?
For example, if I have data: "foo bar" it and I search for "foo" I get "foo ...
103
votes
14answers
75k views
How to resize the jQuery DatePicker control
I'm using the jQuery DatePicker control for the first time. I've got it working on my form, but it's about twice as big as I would like, and about 1.5 times as big as the demo on the jQuery UI page. ...
87
votes
15answers
107k views
How do I pre-populate a jQuery Datepicker textbox with today's date?
I have a very simple jQuery Datepicker calendar:
$(document).ready(function(){
$("#date_pretty").datepicker({
});
});
and of course in the HTML...
<input type="text" size="10" value="" ...