1.

What Is $.noconflict()?

Answer»

<script src="https://code.jquery.com/jquery-1.6.2.js" type="text/javascript"></script>
<script type="text/javascript">
$.noConflict()
</script>

When we CALL to $.noConflict(). Old REFERENCES of $ are saved during jQuery INITIALIZATION, noConflict() simply restores them.

<script src="https://code.jquery.com/jquery-1.6.2.js" type="text/javascript"></script>
<script type="text/javascript">
$.noConflict()
</script>

When we call to $.noConflict(). Old references of $ are saved during jQuery initialization, noConflict() simply restores them.



Discussion

No Comment Found