Im not a jQuerywiz, but I keep getting the "Uncaught TypeError: $(...). is not a function" on jQueryscripts. I'm trying to understand why I get them.
This is the code:
<script type="text/javascript" src="http://shop.xeptor.se/fileupload/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="http://shop.xeptor.se/fileupload/jquery.blackcalculator.src.js"></script>
<div class="calculator"></div>
<script type="text/javascript">
$(document).ready(function(){
var langs = {value: 'Valor', clear: 'Limpar', backspace: 'Voltar'};
$('.calculator').blackCalculator({
type:'advanced',
allowKeyboard:true,
css:'styles/',
language:langs
});
});
</script>