Skip to content

Instantly share code, notes, and snippets.

@muzfr7
Created May 6, 2017 07:27
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 muzfr7/131b9f127dc0a5dfb7bfe635758241fd to your computer and use it in GitHub Desktop.
Save muzfr7/131b9f127dc0a5dfb7bfe635758241fd to your computer and use it in GitHub Desktop.
Applying JQuery Plugins to dynamically generated elements
<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