Upthrust

This is the weblog of Milinda Pathirage

Tag: jquery

jQuery Fundamentals Book

jQuery is one of the popular JavaScript frameworks out there and it simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. To get the best out of any framework or API used for developing software, developers need to understand fundamentals of that framework and need to get the know how [...]

DOM Creation Using jQuery

When developing Ajax applications, we often need to create DOM nodes or DOM trees. There are several ways to create DOM nodes and DOM Trees in JavaScript. For example you can use plain jQuery to create following DOM tree as show after the sample DOM tree. <div id="taskView" class="styledDiv">    <h1>Task Name</h1>    <p class="decorated">Task Subject Goes [...]

jQuery Micro Optimizations

Long time ago Donal Knuth said, Micro-optimizations are worth it while premature optimizations are the root of evil And the difference between micro-optimizations and premature optimizations is that the first ones are driven by measurement while the second ones are driven by guesses, intuitions and hunches. Corey Hart has analyzed jQuery code and came up [...]