JQuery



 jQuery :


  • jQuery is a very fast, feature-rich and small JavaScript library.
  • jQuery makes things like HTML traversal and manipulation,  and event handling, and Ajax of browsers.
  • jQuery a combination of extensibility and versatility .
  • jQuery has changed the techniques that millions of people write JavaScript.

On the internet you find many version of JQuery As like :

  • link jQuery 1.x
  • jQuery 2.x
  • jQuery using Bower
  • jQuery Migrate Plugin
  • Using jQuery with a CDN etc.


JQuery message on browser:

<script language="javascript">
    $(document).ready(function () {
        $('#btn').click(function () {
            alert('Hello JQuery');
        });
    });
</script>


In this tutorial we make many examples which are explain use of jquey in asp.net with controls.
these are listed here :


JQuery related Posts:


Example of Query:


<%@ Page Language="C#" AutoEventWireup="true" CodeFile="mypage.aspx.cs" Inherits="mypage" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
    <title>jQuery Hello World Alert box</title>
    <script type="text/javascript" src="jquery-1.4.2.js"></script>
</head>
<script type="text/javascript">
    $(document).ready(function () {
        $("#cl").click(function () {
            alert("HELLO WORLD!");
        });
    });
</script>
<body>
    <font color="black">CLICK ON ALERT BOX</font>
    <br>
    <br>
    <button id="cl">
        Click </button>
</body>
</html>


Other Asp.net Related post:



Comments

  1. It might help to other
    http://www.code-sample.com/2014/09/angularjs-documentation.html

    ReplyDelete

Post a Comment

Popular posts from this blog