Created
January 15, 2021 11:46
-
-
Save reachkamrul/9cb914dc81dbf1c6b8b69e77555c0855 to your computer and use it in GitHub Desktop.
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
var placeholder = "Any Placeholder You want"; | |
jQuery('.iti--allow-dropdown').on('click', function(){ | |
jQuery('.ff-el-phone').attr('placeholder', placeholder) | |
}) | |
jQuery('.ff-el-phone').on('change', function(){ | |
jQuery('.ff-el-phone').attr('placeholder', placeholder) | |
}) | |
jQuery('.ff-el-phone').attr('placeholder', placeholder) | |
jQuery('.ff-el-phone').keyup(function(e){ | |
if (e.keyCode == 8) { | |
jQuery('.ff-el-phone').attr('placeholder', placeholder) | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment