The problem:
inside this piece of code -
$(document).ready(function () {
$("input[type=text].currenciesOnly").live('keydown', currenciesOnly)
.live('blur', function () { $(this).formatCurrency(); });
});
I am getting the following error -
Uncaught TypeError: Object [object Object] has no method 'formatCurrency'
This is what I am trying to do:
In a .net MVC project I am trying to use the following JQuery plugin -
http://code.google.com/p/jquery-formatcurrency/
and I am using this page as a reference -
I include the following script files and call the function formatCurrency like this-
<script src="/Scripts/jquery-1.5.1.min.js" type="text/javascript"></script>
<script src="/Scripts/modernizr-1.7.min.js" type="text/javascript"></script>
<script src="/js/rcs.js" type="text/javascript"></script>
<script src="/js/jquery.formatCurrency-1.4.0.min.js" type="text/javascript">
</script>
<script type="text/javascript">
$(document).ready(function () {
$("input[type=text].currenciesOnly").live('keydown', currenciesOnly)
.live('blur', function () { $(this).formatCurrency(); });
});
** ALL THE formatCurrency VARIABLES AND FUNCTIONS COME NEXT AS SHOWN HERE - **
** http://jsfiddle.net/CBDea/1/ **
(NOTE: rcs.js is my own file with just a few functions and global variables in it)
Any idea how to fix it? Thanks so much!
live()function is deprecated, please stop using it. – bažmegakapa Sep 20 '12 at 18:47