Created
May 6, 2017 07:27
-
-
Save muzfr7/131b9f127dc0a5dfb7bfe635758241fd to your computer and use it in GitHub Desktop.
Applying JQuery Plugins to dynamically generated elements
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
jQuery(document).ready( | |
function() { | |
$(document).on("focus", ".dateInput", function() { | |
$(this).mask("99/99/9999"); | |
}); | |
} | |
); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment