jQuery.noConflict()

What is the No Conflict Function?

A large number of javascript libraries use the $ symbol for function or variable names, including jquery. The no conflict function allows us to avoid conflicts between libraries using the $ symbol.

What Does this have to do with Autoaddress?

The Autoaddress plugin is developed using jquery. It is our goal to integrate the plugin with as many Customer Relationship Management (CRM for short) products as we can. Some of these CRMs will come packaged with existing javascript libraries, where the $ symbol then creates a conflict with the Autoaddress plugin. Setting "$.noConflict();" in the code in these instances will prevent the conflict.

For full information on the no conflict function, you can visit the jquery home page here: https://api.jquery.com/jquery.noconflict/