Expand Minimize

Consider to not use $

Consider to not use $ in your code in SharePoint 2010 directory. The $ variable is registered by SharePoint for the CMS Site Manager, and the Asset Portal Browser.

CheckId SPC038905
TypeName NoDollarInSharePoint2010
Severity Warning
Type JavaScriptFile

Bad Practice

$.ready(function(){
  a = v $('foo');
});

Good Practice
jQuery.noConflict();
jQuery.ready(function(){
  a = v $('foo');
});

Disclaimer: The views and opinions expressed in this documentation and in SPCAF do not necessarily reflect the opinions and recommendations of Microsoft or any member of Microsoft. SPCAF and RENCORE are registered trademarks of Rencore. All other trademarks, service marks, collective marks, copyrights, registered names, and marks used or cited by this documentation are the property of their respective owners.