I'm using jquery.inputmask (https://github.com/RobinHerbots/jquery.inputmask) and I want to do something like this:
Have the initial input for an element be: "Hello my name is_" and then the cursor would start at the end and you could type in your name. Right now, I can do something like this by:
element.inputmask("Hello my name is",{ "placeholder": "Hello my name is" });
But as you type, it deletes the placeholder text. Is there a way to keep the placeholder text and add user input at the end?