Tagged Questions

Custom Add-on / Plugins for the jQuery library. jQuery functions and features not included in the standard jQuery Library.

learn more… | top users | synonyms (1)

298
votes
29answers
154k views

jQuery Grid Recommendations [closed]

What are the most recommended jQuery grid plugins out there? I've been messing around with Flexigrid which seems to be fairly decent. Are there any other noteworthy ones out there I should be looking ...
75
votes
16answers
68k views

jQuery $.ajax(), $.post sending “OPTIONS” as REQUEST_METHOD in Firefox

Having trouble with what I thought was a relatively simple jQuery plugin... The plugin should fetch data from a php script via ajax to add options to a <select>. The ajax request is pretty ...
70
votes
2answers
1k views

Why does the JavaScript need to start with “;”?

I have recently noticed that a lot of JavaScript files on the web starts with ; immediately following the comment section. For example, this jQuery plugin's code starts with /** * jQuery.ScrollTo ...
63
votes
22answers
8k views

Your Favorite jQuery Controls & Plugins

I'm still getting into JQuery. One of the most attractive elements is the plethora of available plug-ins and controls! Of late, I've been a big fan of the Accordion. When styled and combined with ...
60
votes
7answers
3k views

I'd like to understand the jQuery plugin syntax

The jQuery site lists the basic plugin syntax for jQuery as this: (function( $ ){ $.fn.myPlugin = function() { // there's no need to do $(this) because // "this" is already a jquery ...
58
votes
2answers
3k views

Adding a Resource View/Gannt chart to jQuery Fullcalendar

I am using jQuery Fullcalendar and if you're not using it I suggest you do too because it is absolutely fantastic at what it does! However to be really useful to me and my project (and many others) I ...
44
votes
4answers
30k views

Facebook style JQuery autocomplete plugin

Im after a plugin to do autocomplete like facebook does in that you can select multiple items - similar to how tagging a stackoverflow question works. Here are a couple I ran into: ...
44
votes
10answers
102k views

How to get image size (height & width) using javascript?

Is there any javascript or jquery apis or methods to get the dimensions of an image on the page?
42
votes
2answers
2k views

jQuery plugin template - best practice, convention, performance and memory impact

I've started to write few jQuery plugins and figured it'd be nice to setup my IDE with a jQuery plugin template. I have been reading some articles and posts on this site related to plugin ...
35
votes
1answer
21k views

JQuery to load Javascript file dynamically

I have a very large javascript file I would like to load only if the user clicks on a certain button. I am using jQuery as my framework. Is there a built-in method or plugin that will help me do ...
33
votes
6answers
21k views

Best jQuery Status Message Plugin?

What is the best jQuery status message plugin? I like jGrowl and Purr, but jGrowl doesn't have the feature to remain sticky (not close automatially) and Purr doesn't seem to work right in IE 6. I ...
31
votes
7answers
16k views

jQuery Validate - require at least one field in a group to be filled

I'm using the excellent jQuery Validate Plugin to validate some forms. On one form, I need to ensure that the user fills in at least one of a group of fields. I think I've got a pretty good solution, ...
28
votes
4answers
27k views

jQuery Validation plugin: disable validation for specified submit buttons

I have a form with multiple fields that I'm validating (some with methods added for custom validation) with Jörn Zaeffere's excellent jQuery Validation plugin. How do you circumvent validation with ...
25
votes
9answers
29k views

Pie chart with jQuery

I want to create a pie chart in JavaScript. On searching I found the Google Charts API. Since we are using jQuery I found that there is jQuery integration for Google Charts available. But my problem ...
25
votes
9answers
44k views

JQuery datepicker- 2 inputs/textboxes and restricting range

I am using the Jquery datepicker plugin with two input boxes, one for the "From" date and the second with the "To" date. I am using the JQuery datepicker functional demo as a basis for getting the two ...
22
votes
6answers
10k views

how to check if a jquery plugin is loaded

Is there any way to check if a particular plugin is available? Imagine that you are developing a plugin that depends on another plugin being loaded. For example i want the jQuery Validation plugin ...
21
votes
9answers
455 views

Workaround for lack of CSS feature to “suppress inherited styles” (and backgrounds?)

I have a DOM situation that looks like this: A is an ancestor of B, which is in turn an ancestor of C Initially, A has styles that inherit to B and C I wish to temporarily highlight B by giving it a ...
19
votes
6answers
8k views

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 ...
19
votes
5answers
2k views

What is the benefits of using jQuery UI over plugins?

jQuery 1.3.2 minified is 55.9K, and jQuery UI core itself has more than 110K and top of that each component adds more to this core. I am wondering good reasons to use jQuery UI over plugins. For ...
19
votes
12answers
77k views

How to launch jQuery Fancybox on page load?

I would like to launch a Fancybox (e.g. Fancybox's version of a modal or light box) on page load. I could bind it to a hidden anchor tag and fire the click event of that anchor tag via JavaScript, but ...
19
votes
9answers
4k views

What's your favorite jQuery modal plugin?

I'm looking for a jQuery plugin to show a modal-style popup consisting of a few paragraphs of text and a picture, which the user will view and close. So far, my search has turned up jqModal, ...
18
votes
7answers
6k views

Non-ajax GET/POST using jQuery (plugin?)

This is one of those situations where I feel like I'm missing a crucial keyword to find the answer on Google... I have a bag of parameters and I want to make the browser navigate to a GET URL with ...
17
votes
6answers
611 views

Which jQuery plugin design pattern should I use?

I need to build a jQuery plugin that would return a single instance per selector id. The plugin should and will only be used on elements with id (not possible to use selector that matches many ...
17
votes
6answers
2k views

What side effects does the keyword 'new' have in JavaScript?

I'm working on a plug-in for jQuery and I'm getting this JSLint error: Problem at line 80 character 45: Do not use 'new' for side effects. (new jQuery.fasterTrim(this, options)); I haven't had ...
17
votes
9answers
17k views

jQuery UI Dialog validation without using <form> tags

http://bassistance.de/jquery-plugins/jquery-plugin-validation/ looks to be the best jquery validation plugin out there. I can't seem to get it working in the jQuery UI dialog though. This code works ...
16
votes
5answers
2k views

jQuery, jQuery UI, and Dual Licensed Plugins (Dual Licensing)

OK I have read many posts regarding Dual Licensing using MIT and GPL licenses. But Im curious still, as the wording seems to be inclusive. Many of the Dual Licenses state that the software is ...
16
votes
9answers
7k views

What is the best alternative for jQuery thickbox [closed]

As jQuery thickbox is not maintained anymore (as of ThickBox 3.1), what is the best alternative for jQuery thickbox currently available under GPL or similar license. Looks nyromodal is best available ...
16
votes
4answers
22k views

How to change Jquery UI Slider handle

I want to modify the stock JQuery UI slider so that the handle has a arrow on it rather than being a square. i.e. I want to use a custom image as the handle. There are a few tutorials that do it: ...
16
votes
7answers
36k views

Using jQuery, Restricting File Size Before Uploading

On PHP, they have a way to restrict file size AFTER uploading, but not BEFORE uploading. I use the Malsup jQuery Form Plugin for my form posting, and it supports image file posting. I was wondering ...
15
votes
6answers
17k views

iGoogle style dashboard using jquery

Is there any jquery plugin for implementing iGoogle style dashboard? So basically drag n drop style etc. Thanks
15
votes
4answers
875 views

What tools are available for documenting jQuery plugins?

I've recently started creating some jQuery plugins and I'm finding it difficult to document them with the documentation generating tools that I've found. I've tried: JSDoc, JSDoc-toolkit, JGrouse and ...
15
votes
6answers
25k views

jquery: validate form with multiple checkboxes — at least one must be checked

I'm trying to validate a form using the validate plugin for jquery. I want to require that the user check at least one checkbox in a group in order for the form to be submitted. Here's my jquery ...
15
votes
11answers
58k views

jQuery - how to freeze table header and allow scrolling of the rest of the rows

I have a table rendered from custom control over which I have no control yet I need to make this table scrollable so that the header, or actually the first row is fixed. Is there a jQuery plugin that ...
15
votes
6answers
43k views

jQuery tabs - getting newly selected index

I've previously used jquery's tabs extension to load page fragments via ajax, and to conceal or reveal hidden divs within a page. Both of these methods are well documented, and I've had no problems ...
14
votes
8answers
858 views

Horizontal swipe slider with jQuery and touch devices support?

I need to make a product slider like this ( see red area ) swipe slider with momentum. It should work on Desktop, iPad and Mobile browser. Do you know any jquery/jquery mobile plugin to achieve ...
14
votes
2answers
5k views

using Plupload with ASP.NET/C#

UPDATE I was able to get everything to work properly and I just wanted to post back with the updated code. I used Darin Dimitrov's suggestion on using a separate generic http handler for handling the ...
13
votes
3answers
2k views

How to load images dynamically (or lazily) when users scrolls it into view

I've noticed this in numerous "modern" websites (e.g. facebook and google image search) where the images load only when user scrolls down the page enough to bring them inside the visible viewport ...
13
votes
5answers
7k views

How to create a jQuery plugin with methods?

I'm trying to write a jQuery plugin that will provide additional functions/methods to the object that calls it. All the tutorials I read online (have been browsing for the past 2 hours) include, at ...
12
votes
1answer
328 views

JQuery Templates - too much recursion

I am using jquery templates to generate a tree structure to later display as a treeview of sections and items. The structure of data looks like this, where each section has items and sections and ...
12
votes
3answers
354 views

Disable JavaScript function based on the user's computer's performance

My website has a jQuery script (from Shadow animation jQuery plugin) which constantly changes the colour of box shadow of various <div>s on the home page. The animation is not essential, but ...
12
votes
5answers
7k views

jQuery Plugins vs UI vs some alternative

I've been building a web app using jQuery as much as possible. Every time I need to add some new feature, I usually search for a jQuery plugin that does what I need, then I integrated it into my web ...
12
votes
4answers
16k views

JQuery Checkbox Treeview

I am looking for a JQuery Checkbox Treeview. Does anyone know if a good one exists?
12
votes
3answers
279 views

Any jQuery Plugin Update Manager Utility?

We use jQuery very heavily on a couple of projects and along with it we have loads (sometimes close to a dozen) plugins we use (jqGrid, jPolite, jGrowl, colorbox, layout, validate, formatters, mask, ...
12
votes
9answers
808 views

Post your short extension functions goodies for jQuery

In a similar vain to the c# extension topic on SO It would be great if we could pull together a whole host of useful jQuery function extensions. Please Note the idea is to have short snippets of code ...
11
votes
7answers
1k views

Preferred jQuery toolTip?

There are a bunch of jquery tooltip plugins out there. Which one should I use? and why?
11
votes
10answers
8k views

Looking for a JQuery plug-in similar to Accordian, but that allows multiple sections open at once

I am looking to have a UI element similar to that offered by the JQUERY Accordian plug-in, but allowing the user to keep multiple sections open at once. The documentation has the following to say, ...
11
votes
11answers
425 views

Apart from UI “flair”, what do you use jQuery for?

From an ASP.NET MVC perspective, what do you use jQuery for? Apart from UI "flair" - things like fading colours and pretty animations. Things I can immediately think of include pop-up calendars and ...
10
votes
3answers
494 views

Jquery plugins occupy the same function name -> conflict

I've ran into a problem using jquery expose plugin alongside Masked Input plugin. The problem is they both occupy $.mask function which leads to conflict. But I vitally need this two plugins to work ...
10
votes
3answers
316 views

Finding the best jquery plugins [closed]

Is there a resource for finding the "best" jquery plugins, or at least just the most used ones? For example, I wanted to find a menu jquery plugin but when I goto the jquery website there are so many ...
10
votes
3answers
241 views

Why build Javascript functions as jQuery plugins?

I've seen alot of jQuery implementations of existent JavaScript functions that merely wrap the JavaScript code in a jQuery wrapper and don't actually rely on any of jQuery's base for their operation. ...

1 2 3 4 5 107