jquery Programming Glossary: excellent
Why define anonymous function and pass it jQuery as the argument? http://stackoverflow.com/questions/10371539/why-define-anonymous-function-and-pass-it-jquery-as-the-argument pass it jQuery as the argument I'm looking through the excellent peepcode demo code from the backbone.js screencasts. In it the..
What's the difference in the :not() selector between jQuery and CSS? http://stackoverflow.com/questions/10711730/whats-the-difference-in-the-not-selector-between-jquery-and-css in supporting older versions of IE and other browsers have excellent support for the not selector. So I try changing the .unassigned..
jQuery Standards and Best Practice [closed] http://stackoverflow.com/questions/1245598/jquery-standards-and-best-practice
jQuery Validate - require at least one field in a group to be filled http://stackoverflow.com/questions/1300994/jquery-validate-require-at-least-one-field-in-a-group-to-be-filled 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.. jquery validate share improve this question That's an excellent solution Nathan. Thanks a lot. Here's a way making the above..
jQuery framework internals http://stackoverflow.com/questions/1419731/jquery-framework-internals interactively and immediately see what's going on An excellent free resource for learning that I would recommend http eloquentjavascript.net..
jQuery Mobile: document ready vs page events http://stackoverflow.com/questions/14468659/jquery-mobile-document-ready-vs-page-events will be clear from there. Benchmarking There's an excellent script made for jQuery Mobile page events benchmarking. It can..
JavaScript eyedropper (tell color of Pixel under mouse cursor) http://stackoverflow.com/questions/1936021/javascript-eyedropper-tell-color-of-pixel-under-mouse-cursor is under in Javascript for a CMS. For Firefox there is the excellent ColorZilla extension that does exactly that. However it's FF..
jQuery Validation plugin: disable validation for specified submit buttons http://stackoverflow.com/questions/203844/jquery-validation-plugin-disable-validation-for-specified-submit-buttons methods added for custom validation with Jörn Zaeffere's excellent jQuery Validation plugin. How do you circumvent validation with..
How to format a JSON date? http://stackoverflow.com/questions/206384/how-to-format-a-json-date generally shouldn't be used for new development. See the excellent Json.NET library for a great alternative that serializes dates..
Current commonly accepted best practices around code organization in JavaScript http://stackoverflow.com/questions/247209/current-commonly-accepted-best-practices-around-code-organization-in-javascript
How do I add a JQuery locators to Selenium Remote Control http://stackoverflow.com/questions/2814007/how-do-i-add-a-jquery-locators-to-selenium-remote-control share improve this question Karl Swedberg wrote an excellent blog entry about it which can be found at http www.learningjquery.com..
Changing the URL without reloading the page http://stackoverflow.com/questions/3381280/changing-the-url-without-reloading-the-page to prevent page from reloading. The css tricks.com has an excellent screencast on that have a look at Best Practices with Dynamic..
How to rate-limit ajax requests? http://stackoverflow.com/questions/5031501/how-to-rate-limit-ajax-requests javascript jquery share improve this question The excellent Underscore.js has a throttle function. You pass in the handler..
How to fire AJAX request Periodically? http://stackoverflow.com/questions/5052543/how-to-fire-ajax-request-periodically a bit more advanced technique that I learned from this excellent video by Paul Irish http paulirish.com 2010 10 things i learned..
How to draw a line between draggable and droppable? http://stackoverflow.com/questions/536676/how-to-draw-a-line-between-draggable-and-droppable draw a line between draggable and droppable I'm using the excellent JQuery UI to do a mapping so the user can map persons from one..
Parse URL with jquery/ javascript? http://stackoverflow.com/questions/6644654/parse-url-with-jquery-javascript JavaScript . Update 2012 07 05 I would recommend using the excellent URI.js library if you need to do anything more than super simple..
Disable Drag and Drop on HTML elements? http://stackoverflow.com/questions/704564/disable-drag-and-drop-on-html-elements the docs if you know a pure jQuery solution it would be excellent. In short I need to disable browser text selection and drag..
Callback when CSS3 transition finishes http://stackoverflow.com/questions/9255279/callback-when-css3-transition-finishes oTransitionEnd MSTransitionEnd function ... Mozilla has an excellent reference https developer.mozilla.org en CSS CSS_transitions#Detecting_the_completion_of_a_transition..
When should I use jQuery deferred's “then” method and when should I use the “pipe” method? http://stackoverflow.com/questions/9583783/when-should-i-use-jquery-deferreds-then-method-and-when-should-i-use-the-pip then and when is it better to use pipe Addition Felix's excellent answer has really helped clarify how these two functions differ...
Why define anonymous function and pass it jQuery as the argument? http://stackoverflow.com/questions/10371539/why-define-anonymous-function-and-pass-it-jquery-as-the-argument define anonymous function and pass it jQuery as the argument I'm looking through the excellent peepcode demo code from the backbone.js screencasts. In it the backbone code is all enclosed in an anonymous function that..
What's the difference in the :not() selector between jQuery and CSS? http://stackoverflow.com/questions/10711730/whats-the-difference-in-the-not-selector-between-jquery-and-css class added using jQuery. Besides I'm not really interested in supporting older versions of IE and other browsers have excellent support for the not selector. So I try changing the .unassigned portion above to this knowing I will only have sectors and..
jQuery Standards and Best Practice [closed] http://stackoverflow.com/questions/1245598/jquery-standards-and-best-practice
jQuery Validate - require at least one field in a group to be filled http://stackoverflow.com/questions/1300994/jquery-validate-require-at-least-one-field-in-a-group-to-be-filled 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.. Validation on 4 3 2012. jquery validation jquery plugins jquery validate share improve this question That's an excellent solution Nathan. Thanks a lot. Here's a way making the above code work in case someone runs into trouble integrating it..
jQuery framework internals http://stackoverflow.com/questions/1419731/jquery-framework-internals When learning use Firebug so you can evaluate your expressions interactively and immediately see what's going on An excellent free resource for learning that I would recommend http eloquentjavascript.net contents.html If you're a beginner to DOM..
jQuery Mobile: document ready vs page events http://stackoverflow.com/questions/14468659/jquery-mobile-document-ready-vs-page-events http jsperf.com jquery live vs delegate vs on 34 everything will be clear from there. Benchmarking There's an excellent script made for jQuery Mobile page events benchmarking. It can be found here https github.com jquery jquery mobile blob..
JavaScript eyedropper (tell color of Pixel under mouse cursor) http://stackoverflow.com/questions/1936021/javascript-eyedropper-tell-color-of-pixel-under-mouse-cursor that gives me the hex value of the pixel the mouse cursor is under in Javascript for a CMS. For Firefox there is the excellent ColorZilla extension that does exactly that. However it's FF only of course and I would really like to deliver the tool..
jQuery Validation plugin: disable validation for specified submit buttons http://stackoverflow.com/questions/203844/jquery-validation-plugin-disable-validation-for-specified-submit-buttons 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 specified submit controls in other words fire validation..
How to format a JSON date? http://stackoverflow.com/questions/206384/how-to-format-a-json-date 8601 dates are preferred over this old format so this format generally shouldn't be used for new development. See the excellent Json.NET library for a great alternative that serializes dates using the ISO 8601 format. For ISO 8601 formatted JSON dates..
Current commonly accepted best practices around code organization in JavaScript http://stackoverflow.com/questions/247209/current-commonly-accepted-best-practices-around-code-organization-in-javascript
How do I add a JQuery locators to Selenium Remote Control http://stackoverflow.com/questions/2814007/how-do-i-add-a-jquery-locators-to-selenium-remote-control perspective that'd be great. Thanks jquery selenium selectors share improve this question Karl Swedberg wrote an excellent blog entry about it which can be found at http www.learningjquery.com 2009 04 better stronger safer jquerify bookmarklet..
Changing the URL without reloading the page http://stackoverflow.com/questions/3381280/changing-the-url-without-reloading-the-page
How to rate-limit ajax requests? http://stackoverflow.com/questions/5031501/how-to-rate-limit-ajax-requests exceed limit of 1 request per 30 seconds. Appreciate your help javascript jquery share improve this question The excellent Underscore.js has a throttle function. You pass in the handler that you want to throttle and get back a rate limited version..
How to fire AJAX request Periodically? http://stackoverflow.com/questions/5052543/how-to-fire-ajax-request-periodically and setTimeout will do the trick. I wanted to highlight a bit more advanced technique that I learned from this excellent video by Paul Irish http paulirish.com 2010 10 things i learned from the jquery source For periodic tasks that might end..
How to draw a line between draggable and droppable? http://stackoverflow.com/questions/536676/how-to-draw-a-line-between-draggable-and-droppable to draw a line between draggable and droppable I'm using the excellent JQuery UI to do a mapping so the user can map persons from one program to persons from other program. using this simple..
Parse URL with jquery/ javascript? http://stackoverflow.com/questions/6644654/parse-url-with-jquery-javascript
Disable Drag and Drop on HTML elements? http://stackoverflow.com/questions/704564/disable-drag-and-drop-on-html-elements using jQuery and although I wasn't able to find it browsing the docs if you know a pure jQuery solution it would be excellent. In short I need to disable browser text selection and drag and drop functions while my user has the mouse button down and..
Callback when CSS3 transition finishes http://stackoverflow.com/questions/9255279/callback-when-css3-transition-finishes #someSelector .bind transitionend webkitTransitionEnd oTransitionEnd MSTransitionEnd function ... Mozilla has an excellent reference https developer.mozilla.org en CSS CSS_transitions#Detecting_the_completion_of_a_transition For animations it's..
When should I use jQuery deferred's “then” method and when should I use the “pipe” method? http://stackoverflow.com/questions/9583783/when-should-i-use-jquery-deferreds-then-method-and-when-should-i-use-the-pip different pros and cons of each. So when is it better to use then and when is it better to use pipe Addition Felix's excellent answer has really helped clarify how these two functions differ. But I wonder if there are times when the functionality..
|