Google+

Monday, April 25, 2011

Tutorial#1 - MSDN - How to become a web developer/programmer



Note:-Please comment and reply me.

Microsoft All-In-One Code Framework: A Developer's Painkiller - Busted K...



Note:-Please comment and reply me.

Sunday, April 24, 2011

Jquery


What is jQuery?


  • A framework for Client Side JavaScript.
  • Frameworks provide useful alternatives for common programming tasks, creating functionality which may not be available or cumbersome to use within a language.
  • An open source project, maintained by a group of developers, with a very active support base and thorough, well written documentation.
  • jQuery is built on top of JavaScript, a rich and expressive language in its own right.


jQuery Syntax:-


$.func(…); 
or 
$(selector).func1(…).func2(…).funcN(…);



$             jQuery Object, can be used instead of  jQuery
selector   Selector syntax, many different selectors allowed
func        Chainable, most functions return a jQuery object
(…)        Function parameters



Note:-Please comment and reply me.