Skip to content

Instantly share code, notes, and snippets.

@vfontjr
Last active February 20, 2021 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vfontjr/13325d77aff636cd77fd75337666224a to your computer and use it in GitHub Desktop.
Save vfontjr/13325d77aff636cd77fd75337666224a to your computer and use it in GitHub Desktop.
formidable_masterminds_numeral_demo
<?php
wp_enqueue_scripts( 'numeral-script', get_stylesheet_directory_uri() . '/js/numeral.min.js', array( '' ), '1.0.0', true );
<script src="//cdnjs.cloudflare.com/ajax/libs/numeral.js/2.0.6/numeral.min.js"></script>
<script>
jQuery(document).ready(function ($) {
"use strict";
$('#field_oqrnm').on("change", function() {
var raw_value = $(this).val(),
formatted_value = numeral(raw_value).format('$0,0.00');
$(this).val(formatted_value);
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment