jquery Programming Glossary: decision
Why “$().ready(handler)” is not recommended? http://stackoverflow.com/questions/10753306/why-readyhandler-is-not-recommended ready function is .ready fn but it's a really old design decision and that is what we have now. I asked him Do you think that..
Keep focus on blur event http://stackoverflow.com/questions/1097905/keep-focus-on-blur-event it focus just before it is about to lose it. As for the decision of 100 ms its really a fluke here. Cheers jrh EDIT in response..
What is the best back button jQuery plugin? [closed] http://stackoverflow.com/questions/116446/what-is-the-best-back-button-jquery-plugin sure I understand enough about them to make an intelligent decision. For my application I need the plugin to allow the back button..
control window.onbeforeunload event http://stackoverflow.com/questions/12103876/control-window-onbeforeunload-event it and can I raise an alert or some function based on his decision if yes please tell me script type text javascript window .bind..
Can you autoplay HTML5 videos on the iPad? http://stackoverflow.com/questions/12496144/can-you-autoplay-html5-videos-on-the-ipad on iOS devices to confirm my assumption Apple has made the decision to disable the automatic playing of video on iOS devices through..
load() method deprecated? http://stackoverflow.com/questions/12643160/load-method-deprecated event. CCAO cannot tell them apart since it's a dynamic decision based on arguments. To avoid ambiguities related to the method's..
jQuery.each implementation differs from native Array.forEach http://stackoverflow.com/questions/13095607/jquery-each-implementation-differs-from-native-array-foreach entry Does anyone know the reasoning behind this design decision I have always used .each extensively but it always bugged me.. functions but I have always been curious about the design decision. Maybe it was made in older times before browsers implemented..
jQuery attr vs prop? http://stackoverflow.com/questions/13247058/jquery-attr-vs-prop wanted this to be a clean break but I think that the right decision was made as things didn't break all over the place Regarding..
Avoid XSS and allow some html tags with JavaScript http://stackoverflow.com/questions/19824338/avoid-xss-and-allow-some-html-tags-with-javascript more secure solution. Based on this you can find a proper decision. 1. Personally for server code sanitization I used jSoup . As..
What happened to Dojo in 2008? http://stackoverflow.com/questions/2450696/what-happened-to-dojo-in-2008 finally understood social implications of their technical decisions changes were made the community is alive and well. Is Dojo.. own community. Ultimately it is up to users to make a decision on what they want based on their needs. Update I hope nobody..
How to determine the best “framerate” (setInterval delay) to use in a JavaScript animation loop? http://stackoverflow.com/questions/2940054/how-to-determine-the-best-framerate-setinterval-delay-to-use-in-a-javascript Firefox can provide some hard facts that might back up the decision of a specific framerate. Or perhaps a list of animations or..
How can I display a tooltip on an HTML “option” tag? http://stackoverflow.com/questions/3249591/how-can-i-display-a-tooltip-on-an-html-option-tag display tooltips on individual option elements to aid the decision process there is not enough room for a different kind of control..
What is the most efficient way to create HTML elements using jQuery? http://stackoverflow.com/questions/327047/what-is-the-most-efficient-way-to-create-html-elements-using-jquery
jQuery serializeArray doesn't include the submit button that was clicked http://stackoverflow.com/questions/4007942/jquery-serializearray-doesnt-include-the-submit-button-that-was-clicked submitted with the rest of the data so that I can make a decision on what to do based on which button was clicked. The method..
catching beforeunload confirmation canceled? http://stackoverflow.com/questions/5259217/catching-beforeunload-confirmation-canceled more to know whether he leaves or not and do thing on his decision. I tried this window.onbeforunload function e var event jQuery.Event..
Update whole page on Ajax request http://stackoverflow.com/questions/5941933/update-whole-page-on-ajax-request broken by design. You shouldn't have to make that decision at that place. For example the ajax response could only signal..
Should I link to Google API's cloud for JS libraries? http://stackoverflow.com/questions/936399/should-i-link-to-google-apis-cloud-for-js-libraries downloading files and deploying directly. What say you My decision The likelihood of the lib already cached on the users system..
Why is jQuery so widely adopted versus other Javascript frameworks? [closed] http://stackoverflow.com/questions/990077/why-is-jquery-so-widely-adopted-versus-other-javascript-frameworks there are other options around and I'm trying to take a decision as to why jQuery should be our choice versus what we use right..
Why “$().ready(handler)” is not recommended? http://stackoverflow.com/questions/10753306/why-readyhandler-is-not-recommended it work properly for the legacy case. The best place for the ready function is .ready fn but it's a really old design decision and that is what we have now. I asked him Do you think that fn is more readable than .ready fn His answer was I always do..
Keep focus on blur event http://stackoverflow.com/questions/1097905/keep-focus-on-blur-event go out of focus in the mean time. Otherwise we would be giving it focus just before it is about to lose it. As for the decision of 100 ms its really a fluke here. Cheers jrh EDIT in response to @Jim's comment The first method probably did not work..
What is the best back button jQuery plugin? [closed] http://stackoverflow.com/questions/116446/what-is-the-best-back-button-jquery-plugin seems to provide all the functionality I need but I'm not sure I understand enough about them to make an intelligent decision. For my application I need the plugin to allow the back button to work through ajax interactions and I need to be able to..
control window.onbeforeunload event http://stackoverflow.com/questions/12103876/control-window-onbeforeunload-event like check if the user decided to leave the page or stay in it and can I raise an alert or some function based on his decision if yes please tell me script type text javascript window .bind beforeunload function if stay on page alert i want to stay..
Can you autoplay HTML5 videos on the iPad? http://stackoverflow.com/questions/12496144/can-you-autoplay-html5-videos-on-the-ipad extract in the Apple documentation in regard to auto play on iOS devices to confirm my assumption Apple has made the decision to disable the automatic playing of video on iOS devices through both script and attribute implementations. In Safari on..
load() method deprecated? http://stackoverflow.com/questions/12643160/load-method-deprecated signature it can either be an ajax load or attach fire a load event. CCAO cannot tell them apart since it's a dynamic decision based on arguments. To avoid ambiguities related to the method's signature it is now recommended to use on instead. For..
jQuery.each implementation differs from native Array.forEach http://stackoverflow.com/questions/13095607/jquery-each-implementation-differs-from-native-array-foreach as first argument .each arr function index entry console.log entry Does anyone know the reasoning behind this design decision I have always used .each extensively but it always bugged me that the index was the first argument as it is rarely used... prefer to use native polyfills for the most common new array functions but I have always been curious about the design decision. Maybe it was made in older times before browsers implemented native forEach and legacy support prevented them from changing..
jQuery attr vs prop? http://stackoverflow.com/questions/13247058/jquery-attr-vs-prop does also do prop so that things didn't break. Some people wanted this to be a clean break but I think that the right decision was made as things didn't break all over the place Regarding Prop The value in it's current state after any modifications..
Avoid XSS and allow some html tags with JavaScript http://stackoverflow.com/questions/19824338/avoid-xss-and-allow-some-html-tags-with-javascript not. As it was stated previously not allowing html tags is more secure solution. Based on this you can find a proper decision. 1. Personally for server code sanitization I used jSoup . As for me it's pretty good tool to do this. Usually In order..
What happened to Dojo in 2008? http://stackoverflow.com/questions/2450696/what-happened-to-dojo-in-2008 is more socially acceptable. I believe that Dojo technocrats finally understood social implications of their technical decisions changes were made the community is alive and well. Is Dojo going to beat jQuery at numbers any time soon While technically.. useful in a broad spectrum of scenarios and on building their own community. Ultimately it is up to users to make a decision on what they want based on their needs. Update I hope nobody will make a conclusion that Dojo dropped the ball and jQuery..
How to determine the best “framerate” (setInterval delay) to use in a JavaScript animation loop? http://stackoverflow.com/questions/2940054/how-to-determine-the-best-framerate-setinterval-delay-to-use-in-a-javascript with knowledge of the source code behind Chromium or Firefox can provide some hard facts that might back up the decision of a specific framerate. Or perhaps a list of animations or frameworks and their delays. I believe this makes for an interesting..
How can I display a tooltip on an HTML “option” tag? http://stackoverflow.com/questions/3249591/how-can-i-display-a-tooltip-on-an-html-option-tag using plain HTML or jQuery assisted JavaScript how do you display tooltips on individual option elements to aid the decision process there is not enough room for a different kind of control and some help will be needed . Can this be done though..
What is the most efficient way to create HTML elements using jQuery? http://stackoverflow.com/questions/327047/what-is-the-most-efficient-way-to-create-html-elements-using-jquery
jQuery serializeArray doesn't include the submit button that was clicked http://stackoverflow.com/questions/4007942/jquery-serializearray-doesnt-include-the-submit-button-that-was-clicked ajax I want the name and value of the button I clicked to be submitted with the rest of the data so that I can make a decision on what to do based on which button was clicked. The method in the rails.js file uses .serializeArray for sending form data..
catching beforeunload confirmation canceled? http://stackoverflow.com/questions/5259217/catching-beforeunload-confirmation-canceled the user and user can stay on the page or leave. But I want more to know whether he leaves or not and do thing on his decision. I tried this window.onbeforunload function e var event jQuery.Event e var result confirm 'want to leave ' if result false..
Update whole page on Ajax request http://stackoverflow.com/questions/5941933/update-whole-page-on-ajax-request this question Quite frankly I think that approach is basically broken by design. You shouldn't have to make that decision at that place. For example the ajax response could only signal that a whole new page should be loaded and the new content..
Should I link to Google API's cloud for JS libraries? http://stackoverflow.com/questions/936399/should-i-link-to-google-apis-cloud-for-js-libraries other JS libraries from Google API's cloud as opposed to downloading files and deploying directly. What say you My decision The likelihood of the lib already cached on the users system is the overriding factor for me so I'm going with a permalink..
Why is jQuery so widely adopted versus other Javascript frameworks? [closed] http://stackoverflow.com/questions/990077/why-is-jquery-so-widely-adopted-versus-other-javascript-frameworks Note While I know and admit jQuery is a great framework there are other options around and I'm trying to take a decision as to why jQuery should be our choice versus what we use right now MooTools javascript jquery frameworks mootools share..
|