<script>
$("#inputSlug").keyup(function() {
var Text = $(this).val();
Text = Text.toLowerCase();
Text = Text.replace(/[^a-zA-Z0-9]+/g,'-');
var Text = Text.replace(/^\-+|\-+$/g, "");
$("#inputSlug").val(Text);
});
</script>
Discover more from Soa Technology | Aditya Website Development Designing Company
Subscribe to get the latest posts sent to your email.