jquery Programming Glossary: legacy
How to Parse XML Cross-domain in jQuery? http://stackoverflow.com/questions/10068963/how-to-parse-xml-cross-domain-in-jquery see this being useful might be if you have XML data from a legacy application stored in a database and you return it to the client..
Why “$().ready(handler)” is not recommended? http://stackoverflow.com/questions/10753306/why-readyhandler-is-not-recommended now just patched in core to make it work properly for the legacy case. The best place for the ready function is .ready fn but..
jQuery event to trigger action when a div is made visible http://stackoverflow.com/questions/1225102/jquery-event-to-trigger-action-when-a-div-is-made-visible time you show something or if you need it to work with legacy code Jquery extension jQuery function var _oldShow .fn.show..
jQuery ajax, how to send JSON instead of QueryString http://stackoverflow.com/questions/12693947/jquery-ajax-how-to-send-json-instead-of-querystring
jQuery.each implementation differs from native Array.forEach http://stackoverflow.com/questions/13095607/jquery-each-implementation-differs-from-native-array-foreach older times before browsers implemented native forEach and legacy support prevented them from changing it or... Or maybe it is..
Can I keep Nuget on the jQuery 1.9.x/1.x path (instead of upgrading to 2.x)? http://stackoverflow.com/questions/16125828/can-i-keep-nuget-on-the-jquery-1-9-x-1-x-path-instead-of-upgrading-to-2-x i.e. with significant disclaimers. The 1.9 library is not legacy and will receive further updates in the future. I've been in.. a new nuget package specifically written to support the 'legacy' 1.x version or copy the script in manually each time. In any..
jQuery global variable best practice & options? http://stackoverflow.com/questions/2866866/jquery-global-variable-best-practice-options best practice options Currently I am working on a legacy web page that uses a ton of JavaScript jQuery Microsoft client..
Redirect on Ajax Jquery Call http://stackoverflow.com/questions/2927044/redirect-on-ajax-jquery-call would have encountered this problem already. I have a legacy app built on Spring MVC it has a interceptor filter that redirects..
Specifying the value output of of an HTML5 input type = date? http://stackoverflow.com/questions/3496241/specifying-the-value-output-of-of-an-html5-input-type-date date pickers to my application which currently uses a legacy home rolled system. Date input support isn't widespread yet.. it uses RFC 3339 full date Is it possible to change the legacy date picker to use yyyy mm dd format and update the server side.. a hidden date value field to match the format of the legacy date picker converts yyyy mm dd to dd MMM yyyy . share improve..
jQuery - trapping tab select event http://stackoverflow.com/questions/3641154/jquery-trapping-tab-select-event If there's anything to learn here it's that supporting legacy code is hard. See the jsfiddle for more http jsfiddle.net qCfnL..
JQuery clone duplicate IDs http://stackoverflow.com/questions/416081/jquery-clone-duplicate-ids Change all id ... to class ... If you are dealing with legacy code or something and can't change the IDs to classes you must..
Best JavaScript solution for client-side form validation and interaction? http://stackoverflow.com/questions/4751780/best-javascript-solution-for-client-side-form-validation-and-interaction users sign up and create a widget in one swoop but due to legacy systems that flow requires two POST requests. Customizable error..
Increase font size with JavaScript around fixed floated images in CSS columns http://stackoverflow.com/questions/5405789/increase-font-size-with-javascript-around-fixed-floated-images-in-css-columns that are portable and scalable and that integrate with legacy technologies. A Java EE application server can handle transactions..
Is there a DOM event that fires when an HTML select element is closed? http://stackoverflow.com/questions/6207929/is-there-a-dom-event-that-fires-when-an-html-select-element-is-closed the select has been changed. I'm not concerned about legacy Internet Explorers just something to work in standards compliant..
Change the asynchronous jQuery Dialog to be synchronous? http://stackoverflow.com/questions/6962301/change-the-asynchronous-jquery-dialog-to-be-synchronous replace alert' confirm with the jquery dialog. But most of legacy codes is written in some asynchronous way which make it difficult..
Weird Chrome prototype/jQuery conflict http://stackoverflow.com/questions/833883/weird-chrome-prototype-jquery-conflict prototype jQuery conflict We have an application with legacy code that relies on prototype but we've found it to be too 'heavy'.. 1.6.0.3.js which fixes this issue but breaks a load of legacy code elsewhere jquery google chrome prototypejs conflict ..
How to Parse XML Cross-domain in jQuery? http://stackoverflow.com/questions/10068963/how-to-parse-xml-cross-domain-in-jquery and give it a JavaScript wrapper. Cases where I could see this being useful might be if you have XML data from a legacy application stored in a database and you return it to the client side using script tag remoting or JSONP calls. share improve..
Why “$().ready(handler)” is not recommended? http://stackoverflow.com/questions/10753306/why-readyhandler-is-not-recommended work so as not to break a lot of code .ready fn is literally now just patched in core to make 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..
jQuery event to trigger action when a div is made visible http://stackoverflow.com/questions/1225102/jquery-event-to-trigger-action-when-a-div-is-made-visible original .show method so you don't have to trigger events every time you show something or if you need it to work with legacy code Jquery extension jQuery function var _oldShow .fn.show .fn.show function speed oldCallback return this .each function..
jQuery ajax, how to send JSON instead of QueryString http://stackoverflow.com/questions/12693947/jquery-ajax-how-to-send-json-instead-of-querystring
jQuery.each implementation differs from native Array.forEach http://stackoverflow.com/questions/13095607/jquery-each-implementation-differs-from-native-array-foreach curious about the design decision. Maybe it was made in older times before browsers implemented native forEach and legacy support prevented them from changing it or... Or maybe it is designed this way because is can be used on native objects..
Can I keep Nuget on the jQuery 1.9.x/1.x path (instead of upgrading to 2.x)? http://stackoverflow.com/questions/16125828/can-i-keep-nuget-on-the-jquery-1-9-x-1-x-path-instead-of-upgrading-to-2-x separate version 2 nuget package and advertised accordingly i.e. with significant disclaimers. The 1.9 library is not legacy and will receive further updates in the future. I've been in touch with the package author and will write more if I receive.. now be on the 2.0 track. I assume you'll have to switch to a new nuget package specifically written to support the 'legacy' 1.x version or copy the script in manually each time. In any case I'll update this when I learn more. Edit The package..
jQuery global variable best practice & options? http://stackoverflow.com/questions/2866866/jquery-global-variable-best-practice-options global variable best practice options Currently I am working on a legacy web page that uses a ton of JavaScript jQuery Microsoft client JavaScript and other libraries. The bottom line I cannot..
Redirect on Ajax Jquery Call http://stackoverflow.com/questions/2927044/redirect-on-ajax-jquery-call Ajax Jquery Call I am newbie to ajax here and I know somebody would have encountered this problem already. I have a legacy app built on Spring MVC it has a interceptor filter that redirects the user to the login page whenever there is no session...
Specifying the value output of of an HTML5 input type = date? http://stackoverflow.com/questions/3496241/specifying-the-value-output-of-of-an-html5-input-type-date output of of an HTML5 input type date I'd like to add native date pickers to my application which currently uses a legacy home rolled system. Date input support isn't widespread yet but if I could present both implementations based on compatibility.. The HTML5 date input field is specific about the format it uses RFC 3339 full date Is it possible to change the legacy date picker to use yyyy mm dd format and update the server side that reads that I assume not so then you can add some Javascript..
jQuery - trapping tab select event http://stackoverflow.com/questions/3641154/jquery-trapping-tab-select-event
JQuery clone duplicate IDs http://stackoverflow.com/questions/416081/jquery-clone-duplicate-ids items after you've cloned them you must use classes not IDs. Change all id ... to class ... If you are dealing with legacy code or something and can't change the IDs to classes you must remove the id attributes before appending. #MainConfig .clone..
Best JavaScript solution for client-side form validation and interaction? http://stackoverflow.com/questions/4751780/best-javascript-solution-for-client-side-form-validation-and-interaction forms in order from the same page using Ajax. E.g. we let users sign up and create a widget in one swoop but due to legacy systems that flow requires two POST requests. Customizable error display Sometimes errors appear above fields sometimes..
Increase font size with JavaScript around fixed floated images in CSS columns http://stackoverflow.com/questions/5405789/increase-font-size-with-javascript-around-fixed-floated-images-in-css-columns yoda This allows developers to create enterprise applications that are portable and scalable and that integrate with legacy technologies. A Java EE application server can handle transactions security scalability concurrency and management of the..
Is there a DOM event that fires when an HTML select element is closed? http://stackoverflow.com/questions/6207929/is-there-a-dom-event-that-fires-when-an-html-select-element-is-closed It's not the change event of the select since no option within the select has been changed. I'm not concerned about legacy Internet Explorers just something to work in standards compliant modern browsers. Proprietary hacks could be worth knowing..
Change the asynchronous jQuery Dialog to be synchronous? http://stackoverflow.com/questions/6962301/change-the-asynchronous-jquery-dialog-to-be-synchronous jQuery Dialog to be synchronous Currently I'm working to replace alert' confirm with the jquery dialog. But most of legacy codes is written in some asynchronous way which make it difficult to change. Is there any way to make jquery dialog work..
Weird Chrome prototype/jQuery conflict http://stackoverflow.com/questions/833883/weird-chrome-prototype-jquery-conflict Chrome prototype jQuery conflict We have an application with legacy code that relies on prototype but we've found it to be too 'heavy' for most of the places we want to use it and and have.. Anyone know a good workaround apart from upgrading to prototype 1.6.0.3.js which fixes this issue but breaks a load of legacy code elsewhere jquery google chrome prototypejs conflict share improve this question From Core jQuery.noConflict NOTE..
|