jQuery Name Conflicts

jQuery uses the $ sign as a shortcut for jQuery.
Some other JavaScript libraries also use the dollar sign for their functions.
The jQuery noConflict() method specifies a custom name (like jq), instead of using the dollar sign.

<script type="text/javascript">
    var jq=jQuery.noConflict();
    jq("p").hide();
<script>