Working on a website using Jomsocial’s ‘Socialize’ theme. There are conflict issues that make jquery not trigger right.
This works though:
<script>
jQuery.noConflict();
(function( $ ) {
$(function() {
// More code using $ as alias to jQuery
$(“#something”).click(function(){
//do something
});
});
})(jQuery);
</script>