Introduction to client-side development
client-side elements • Views • Controllers • Client-model Client Side Scripting technologies HTML (HyperText Markup Language) CSS (Cascading Style Sheets) JavaScript Ajax (Asynchronous JavaScript and XML) jQuery (JavaScript Framework Library - commonly used in Ajax development) MooTools (JavaScript Framework Library - commonly used in Ajax development) Dojo Toolkit (JavaScript Framework Library - commonly used in Ajax development) HTML Elements An HTML element usually consists of a start tag and end tag, with the content inserted in between: < tagname > Content goes here... < /tagname > The HTML element is everything from the start tag to the end tag: < p > My first paragraph. < /p > Start tag Element content ...