I am using plugin jquery-1.4.2.min.js and extension jquery.price_format.js for format price but output result is null
<script type="text/javascript">
$('#price').priceFormat({
prefix: 'USD$ ',
centsSeparator: ',',
thousandsSeparator: '.'
});
</script>
input: <input type="text" name="price" id="price" value=""/>
ouput: 123456
But result exactly demo is: USD$ 123,456.00
Help me
try adding this code under the document.ready function .
like this………….