Tuesday, November 22, 2016

JQuery Conflicts and it's Implementations

jQuery.noConflict will reset the $ variable so it's no longer an alias of jQuery. This is mostly used for mixing versions of jQuery, particularly for out-dated plugins 


<script type="text/javascript">
var myJQ = jQuery.noConflict(true); </script>
Now, myJQ variable can be used as follows,


myJQ(document).ready(function() {
});



Clearing Person/Group Values

To clear out or empty the values in person or group columns, how you do it depends on if the column is single-value or multi-value. For ...