---
title: "JQuery noConflict method"  
description: "In JQuery generally ($) dollar sign is an indication of using JQuery function but jQuery give us functionality to rename ($) dollar sign instead of ot"  
author: "Sachindra Singh"  
published: 2011-02-21  
updated: 2019-09-07  
canonical: https://www.mindstick.com/articles/475/jquery-noconflict-method  
category: "jquery"  
tags: ["jquery"]  
reading_time: 1 minute  

---

# JQuery noConflict method

In JQuery generally ($) dollar sign is an indication of using JQuery function but jQuery give us functionality to rename ($) dollar sign instead of other user define variable name. By using noConflict () method, user can define own variable name. In this article I am trying to show you, how we can use noConflict method in JQuery as shown below:\

Syntax: **var xyz=$.noConflict ();**

##### Code:

```
     <title>JQuery noConflict method</title>       <script type="text/javascript" src="jquery.min.js">      </script>     <script type="text/javascript">         var userdefine = $.noConflict();//creating user define varaible          userdefine(document).ready(function() {         userdefine("label").append("JQuery dollar($)sign has changed from user define variable name('userdefine'        });     </script></head><body>     <h2>         JQuery noConfilct method</h2>     <label>     </label></body></html>
```

##### Screenshot

![JQuery noConflict method](https://www.mindstick.com/mindstickarticle/7de623c7-a236-4263-984e-a731a0ef0600/images/3a97a5ce-a495-42f4-b66c-8014ffaed67c.png)

\

---

Original Source: https://www.mindstick.com/articles/475/jquery-noconflict-method

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
