jquery Programming Glossary: coupled
Why would one use the Publish/Subscribe pattern (in JS/jQuery)? http://stackoverflow.com/questions/13512949/why-would-one-use-the-publish-subscribe-pattern-in-js-jquery you can easily reuse the different modules. You ™re not coupled with the interfaces of other modules. Using publish subscribe.. of other modules. Using publish subscribe you ™re only coupled with the publish subscribe interface which is not a big deal.. is very useful and can make your application very decoupled. You can reuse your modules very easy. Here is a basic example..
How to trigger the window resize event in JavaScript? http://stackoverflow.com/questions/1818474/how-to-trigger-the-window-resize-event-in-javascript you expect whereas if you call the function you aren't coupled to the event ... window .trigger 'resize' And you could just..
Question about jQuery source == on window http://stackoverflow.com/questions/4847024/question-about-jquery-source-on-window unsafe in IE. I think the root cause is that IE is closely coupled with the Windows OS so you have various OS objects referenced..
JavaScript Drag & Select functionality done right http://stackoverflow.com/questions/5851156/javascript-drag-select-functionality-done-right demos ui.selectable.html However it seems to be tightly coupled with jQuery UI which in turn requires jQuery 1.3.x whereas I..
Backbone js: How to remove extra tag in view? http://stackoverflow.com/questions/7663895/backbone-js-how-to-remove-extra-tag-in-view
Cleaning javascript variable scope by removing it's code from DOM http://stackoverflow.com/questions/786608/cleaning-javascript-variable-scope-by-removing-its-code-from-dom won't work as you expect. The JavaScript heap is not coupled to the DOM once scripts have executed and mutated the heap you..
Django app for image crop using a cropping tool http://stackoverflow.com/questions/7907803/django-app-for-image-crop-using-a-cropping-tool the last two depends of admin and the two first seem very coupled to ther own ImageFields and models any good solution We are..
shadowbox stops working after jquery function call http://stackoverflow.com/questions/9144577/shadowbox-stops-working-after-jquery-function-call the .load of the new content when clicking a menu item coupled with an uncaught exception I saw having to do with an iframe..
Why would one use the Publish/Subscribe pattern (in JS/jQuery)? http://stackoverflow.com/questions/13512949/why-would-one-use-the-publish-subscribe-pattern-in-js-jquery as much as possible . Loosing coupling is a good thing because you can easily reuse the different modules. You ™re not coupled with the interfaces of other modules. Using publish subscribe you ™re only coupled with the publish subscribe interface which.. the different modules. You ™re not coupled with the interfaces of other modules. Using publish subscribe you ™re only coupled with the publish subscribe interface which is not a big deal just two methods. So if you decide to reuse a module in different.. subscribe to the œpublish tweet event and handle it. This approach is very useful and can make your application very decoupled. You can reuse your modules very easy. Here is a basic example of the last approach this is not original twitter code it..
How to trigger the window resize event in JavaScript? http://stackoverflow.com/questions/1818474/how-to-trigger-the-window-resize-event-in-javascript if you changed the event then your trigger wouldn't do what you expect whereas if you call the function you aren't coupled to the event ... window .trigger 'resize' And you could just do it in plain JavaScript var handler window.onresize handler..
Question about jQuery source == on window http://stackoverflow.com/questions/4847024/question-about-jquery-source-on-window See here for why checking againts the window object with is unsafe in IE. I think the root cause is that IE is closely coupled with the Windows OS so you have various OS objects referenced through window and the equality check just dies. That and..
JavaScript Drag & Select functionality done right http://stackoverflow.com/questions/5851156/javascript-drag-select-functionality-done-right I was able to find is this http view.jquery.com tags ui 1.5b2 demos ui.selectable.html However it seems to be tightly coupled with jQuery UI which in turn requires jQuery 1.3.x whereas I was really looking forward to using jQuery 1.5 javascript..
Backbone js: How to remove extra tag in view? http://stackoverflow.com/questions/7663895/backbone-js-how-to-remove-extra-tag-in-view
Cleaning javascript variable scope by removing it's code from DOM http://stackoverflow.com/questions/786608/cleaning-javascript-variable-scope-by-removing-its-code-from-dom jquery dom share improve this question This certainly won't work as you expect. The JavaScript heap is not coupled to the DOM once scripts have executed and mutated the heap you can't unexecute them by removing their associated source..
Django app for image crop using a cropping tool http://stackoverflow.com/questions/7907803/django-app-for-image-crop-using-a-cropping-tool image cropping django imagehandler django avatar crop But the last two depends of admin and the two first seem very coupled to ther own ImageFields and models any good solution We are working over a big application with many features and is very..
shadowbox stops working after jquery function call http://stackoverflow.com/questions/9144577/shadowbox-stops-working-after-jquery-function-call the bottom of this. I think the flaw is the way you're handling the .load of the new content when clicking a menu item coupled with an uncaught exception I saw having to do with an iframe Uncaught exception Unknown player iframe This Nabble Shadowbox..
|