Click here to Skip to main content
15,881,757 members
Articles / Programming Languages / Javascript

Learning jQuery using jQuery Lab

Rate me:
Please Sign up or sign in to vote.
4.79/5 (46 votes)
20 Jun 2013CPOL25 min read 99.5K   2.2K   161  
Explainign the theory of jQuery using live examples
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
public class clsEmp
{
    public string Name { get; set; }
    public string Town { get; set; }
    public string Age { get; set; }
    public string Id { get; set; }
    public string Skills { get; set; }
    public List<clsEmp> GetEmployeeList
    {
        get
        {
            List<clsEmp> data = new List<clsEmp>(){
            new clsEmp{ Name="Rupesh" , Age ="29" , Id="114230" , Skills="c sharp, jquery", Town="Louisville"},
            new clsEmp{ Name="Dewang Mehta" , Age ="35" , Id="012530" , Skills="c sharp, project manager", Town="Louisville"},
            new clsEmp{ Name="Ravindra Ravouri" , Age ="32" , Id="012230" , Skills="c sharp, dot net", Town="Amherst"},
            new clsEmp{ Name="Laxmikanth Vardhanapu" , Age ="31" , Id="154587" , Skills="BA", Town="Louisville"},
            new clsEmp{ Name="Rajeswar" , Age ="30" , Id="116230" , Skills="c sharp, dot net", Town="Louisville"},
            new clsEmp{ Name="Monika" , Age ="10" , Id="154230" , Skills="c sharp", Town="Louisville"},
            new clsEmp{ Name="Mandar" , Age ="37" , Id="234230" , Skills="Account Leader", Town="Amherst"},

            new clsEmp{ Name="Harshal" , Age ="31" , Id="244587" , Skills="Project Lead, dot net", Town="Mumbai"},
            new clsEmp{ Name="Lalit" , Age ="26" , Id="126230" , Skills="c sharp, dot net", Town="Ulhas nagar"},
            new clsEmp{ Name="Arun" , Age ="29" , Id="125230" , Skills="c sharp", Town="Mulund"},
            new clsEmp{ Name="Ankita" , Age ="12" , Id="144230" , Skills="c sharp", Town="Andheri"}
        };
            return data;
        }
    }
    public List<clsEmp> GetEmployeeByName(string name)
    {
       return this.GetEmployeeList.FindAll(emp => emp.Name == name);
    }
}


By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States

I am a Senior Software Developer working since 2005 in Microsoft ASP.Net and related Technologies.


I work on C#, Asp.Net, MVC, RAZOR, Entity Framework, JavaScript, jQuery, HTML5, CSS3, WCF, Silverlight, WPF, MVVM, SQL, SSIS, etc. Did Function Point Analysis, WBS to estimate projects and worked on Agile Scrum team.



I enjoy on exploring new technologies by implementing and writing about them, great interest in learning Design Patterns and their implementations. I love learning, writing JavaScript; now my favorite JavaScript library is jQuery. I enjoy writing jQuery Plugins and core JavaScript. I also write Technical blogs here. You can find me on LinkedIn.



I wrote an article on Swami Vivekananda posted his audio speeches by reading them.


Comments and Discussions