I’m attempting to leverage the jQuery UI Sortable functionality.
I know that jQuery and jQuery UI are already included in EE, but when I attempt to invoke the Sortable functionality in my template, I keep getting errors that it doesn’t recognize the $ jQuery identifier, because in the header I already have some jQuery functionality that works.
Currently I have the following in my template:
[removed]
$(document).ready(function() {
$( "#logo_list" ).sortable();
$( "#logo_list" ).disableSelection();
});
[removed]I originally had this in my header Javascript include, but it wasn’t executing, so I was fearful it had to do with the embedding.
Any idea what I’m missing?
Thanks,