jQuery.cssHooks

Hook directly into jQuery to override how particular CSS properties are retrieved or set, normalize CSS property naming, or create custom properties. The $.cssHooks object provides a way to define functions for getting and setting particular CSS values. It can also be used to create new cssHooks for normalizing CSS3 features such as box shadows and gradients. For example, some versions of Webkit-based browsers require -webkit-border-radius to set the

.slideToggle()

Display or hide the matched elements with a sliding motion. The .slideToggle() method animates the height of the matched elements. This causes lower parts of the page to slide up or down, appearing to reveal or conceal the items. If the element is initially displayed, it will be hidden; if hidden, it will be shown. The display property is saved and restored as needed. If an element has a display value of inline, then is hidden and shown, it will once

jQuery.getScript()

Load a JavaScript file from the server using a GET HTTP request, then execute it. This is a shorthand Ajax function, which is equivalent to: $.ajax({ url: url, dataType: "script", success: success }); The script is executed in the global context, so it can refer to other variables and use jQuery functions. Included scripts can have some impact on the current page. Success Callback The callback is fired once the script has been loaded but not n

Rangeslider

Creates a rangeslider widget Range Slider The rangeslider widget can be considered as a double handle slider. To add a rangeslider widget to your page, use two standard inputs with the type="range" attribute, and put them inside a <div> container. The input values are used to configure the starting position of the handles and the values are populated in the corresponding text inputs (the first one at the beginning of the rangeslider, and

callbacks.remove()

Remove a callback or a collection of callbacks from a callback list. This method returns the Callbacks object onto which it is attached (this). callbacks.remove( callbacks ) version added: 1.7 callbacks Function() or Array A function, or array of funct

.context

The DOM node context originally passed to jQuery(); if none was passed then context will likely be the document. The .context property was deprecated in jQuery 1.10 and is only maintained to the extent needed for supporting .live() in the jQuery Migrate plugin. It may be removed without notice in a future version. The .live() method for binding event handlers uses this property to determine the root element to use for its event delegation needs. The v

.removeClass()

Removes the specified class(es) from each of the set of matched elements while animating all style changes. Similar to native CSS transitions, jQuery UI's class animations provide a smooth transition from one state to another while allowing you to keep all the details about which styles to change in CSS and out of your JavaScript. All class animation methods, including .removeClass(), support custom durations and easings, as well as provide a callbac

.ajaxSuccess()

Attach a function to be executed whenever an Ajax request completes successfully. This is an Ajax Event. Whenever an Ajax request completes successfully, jQuery triggers the ajaxSuccess event. Any and all handlers that have been registered with the .ajaxSuccess() method are executed at this time. To observe this method in action, set up a basic Ajax load request: <div class="trigger">Trigger</div> <div class="result"></div> <

.fadeTo()

Adjust the opacity of the matched elements. The .fadeTo() method animates the opacity of the matched elements. It is similar to the .fadeIn() method but that method unhides the element and always fades to 100% opacity. Durations are given in milliseconds; higher values indicate slower animations, not faster ones. The strings 'fast' and 'slow' can be supplied to indicate durations of 200 and 600 milliseconds, respectively. If any other string is suppli

jQuery.mobile.path.getLocation()

Utility method for safely retrieving the current location. The browser's location.href may contain the username/password information. getLocation() always returns location.href stripped of the username/password information if present, ensuring that your code is not vulnerable to XSS attacks. jQuery.mobile.path.getLocation() This me