Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).ready(function() {
  2.    
  3.     // check the title field
  4.     $('input[name=title]').keyup(function() {      
  5.         name = name.toLowerCase(); // lowercase
  6.         name = name.replace(/^\s+|\s+$/g, ''); // remove leading and trailing whitespaces
  7.         name = name.replace(/\s+/g, '-'); // convert (continuous) whitespaces to one -
  8.         name = name.replace(/[^a-z-]/g, ''); // remove everything that is not [a-z] or -
  9.         $('input[name=url]').val(name); // set value
  10.     });
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement