Eric, thank you so much for your quick reply. I added an HTML element to my form with the following.
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script><script type="text/javascript" src="http://accurate.coffeecup.com/js/jquery.formatCurrency-1.4.0.js"></script> <script type="text/javascript">$(document).ready(function()
{
$('#MonthlyPremium').blur(function()
{
$('#MonthlyPremium').formatCurrency();
});
});</script>
I uploaded the script to
http://accurate.coffeecup.com/js/jquery.formatCurrency-1.4.0.js
and the name of the text field is MonthlyPremium.
I tried it in the preview and published it live and it still doesn't seem to work in either. Do you think something else in my form may be conflicting? There was no other HTML elements that I added, only this one. Does anything stand out to you that would prevent this from working? Would it be that MonthlyPremium is a text field? Should that be setup as a different type? Thanks in advance for your assistance.