hi there,
I really want to use jquery plugins in my module. I'm newbie in Jquery I try to use it.
How do you use JQuery plugins? I mean I tried to put this definition in my *,ascx top under Page directive lines <%@ Control language ....?
<script type="text/javascript" src="../../Script/jquery.calculator.min.js" ></script>
<script type="text/javascript">
$(function() {
$('#basicCalculator').calculator({
showOn: 'both', buttonImageOnly: true, buttonImage: 'calculator.png'
} );
});
</script>
<p><input type="text" id="basicCalculator"></p>
jquery.calculator.min.js is in the folder named Script in the module. ( and this folder is in root of the module like Components folder, Documentation folder and script folder)
how do you use the Jquery plugins? I mean I get an error.
error: "Object doesn't support this property or metho - Default.aspx line 265 - code: 0
I'm using the hosted jquery URL in advanced settings. Jquery is working but I need to get work with plugins.