I was unsuccessful in finding a jQuery plugin that allowed me to write in two inputs simultaneously.
I'm trying to write a normal title in one field, and at the same time type in another input write the same text without special characters or spaces.
e.g.
Input 1: This is my Title!
Input 2: ThisIsMyTitle
on keyup copy input value from current input into 2nd input, no plugin is required.
$("input#first").keyup(function(e){
var val = $(this).val();
val = val.replace(/[^\w]+/g, "");
$("input#second").val(val);
});
something like that
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With