Posts

Showing posts from May, 2019
Image
Client Side Development 2- RIWAs   Rich Internet application (RIA) which is the Web application which is designed to deliver the same features and functions associated with desktop applications. A rich internet application (RIA) usually runs inside a Web browser and does not require software installation on the client side to work. Rich Internet Applications (RIAs) are very complex Web based systems. RIAs are encompassed with various types of components, integrated in diverse ways, making the RIAs more complex systems. Numerous Technologies and Techniques (TTs), frameworks, libraries, and tools had been introduced over the last decade for the development of these components of RIAs.   However,   these   TTs, frameworks,   libraries,   and   tools   do   not   improve   the fundamental concepts   in the   core of the   RIAs and   the complexity   remains   due   to   the   lack...
Image
Client-side development - jQuery A framework is something that usually forces a certain way of implementing a solution, whereas jQuery is just a tool to make implementing what you want to do easier. a library - a collection of functions which are useful when writing web apps. Your code is in charge and it calls into the library when it sees fit.  E.g., jQuery. frameworks - a particular implementation of a web application, where your code fills in the details.  The framework is in charge and it calls into your code when it needs something app specific.  E.g., durandal, ember, etc. The purpose of jQuery is to make it much easier to use JavaScript on your website. jQuery takes a lot of common tasks that require many lines of JavaScript code to accomplish, and wraps them into methods that you can call with a single line of code. jQuery also simplifies a lot of the complicated things from JavaScript, like AJAX calls and DOM mani...