---
title: "How to use Jquery in web page."  
description: "How to use Jquery in web page."  
author: "Anonymous User"  
published: 2016-01-06  
updated: 2016-01-06  
canonical: https://www.mindstick.com/forum/33841/how-to-use-jquery-in-web-page  
category: "jquery"  
tags: ["jquery", "javascript"]  
reading_time: 1 minute  

---

# How to use Jquery in web page.

I want to use Jquery in [web page](https://www.mindstick.com/forum/718/sql-server-report-alignment-to-center-of-web-page). how to use this please help me.

## Replies

### Reply by Anonymous User

jQuery is JavaScript library.\
It makes things like HTML document traversal and manipulation, event handling, \
animation, and Ajax much simpler with an easy-to-use API that works on all browsers.

for more details goto https://jquery.com/

```
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="JqueryForum.aspx.cs" Inherits="Forumasp.JqueryForum" %><!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server">    <title></title></head><body>    <script src="Scripts/jquery-2.1.4.js"></script>    <script>        $(document).ready(function () {            $("#btnalert").click(function (event) {                alert("Hello !");                event.preventDefault();            });        });    </script>    <form runat="server">        <asp:Button ID="btnalert" runat="server" Text="Click" ClientIDMode="Static"></asp:Button>    </form></body></html>
```

```

```


---

Original Source: https://www.mindstick.com/forum/33841/how-to-use-jquery-in-web-page

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
