Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 -

http://jsfiddle.net/CBDea/1/

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!

share|improve this question
1  
Your fiddle works fine for me. Note: the live() function is deprecated, please stop using it. – bažmegakapa Sep 20 '12 at 18:47

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.