Good morning, I have problem with using MasterPage and jQuery. I using jQuery UI with custom Theme and I'll like set design of all buttons to design jQuery UI buttons. In MasterPage a have:
<script src="js/jquery-1.4.4.min.js" type="text/javascript"></script>
<script src="js/jquery-ui-1.8.10.custom.min.js" type="text/javascript"></script>
<script src="js/i18n/jquery-ui-i18n.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
// destroy all dialogs
$('#dialog:ui-dialog').dialog('destroy');
// set buttons
$('input:submit, button').button();
});
</script>
On default aspx page i have one asp:Button and it's looks like jQuery UI button. But in other aspx page in directory I have some asp:TextBox and one asp:Button and I have got error: Microsoft JScript - error in run program: Property $ has Null value or isn't defined. Property isn't object of Function. And button not see like jQuery UI button. What's wrong? Thank you and have a nice day.