I have the following script (paraphrased but in the same order):
<script type="text/javascript" src="jquery-1.4.4.min.js"></script>
<script type="text/javascript" src="jquery-ui-1.8.9.custom.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#surveyModule .numberScale .number").draggable({
helper: 'clone',
revert: 'invalid',
start: function(e, ui) {
$(ui.helper).css({'background-position': '0px -28px'});
}
});
});
</script>
It is throwing an object reference exception calling the .draggable on the jQuery selector.
Anyone have any ideas?
Further Details: This is in a SharePoint webpage form. I have not had problems using JQuery-UI within SharePoint before.