Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mehdichaouch/6654008 to your computer and use it in GitHub Desktop.
Save mehdichaouch/6654008 to your computer and use it in GitHub Desktop.
Un petit bookmarklet qui recopie le texte d'un champ de type input dans un autre champ de type input, mais qui a pour but de recevoir un identifiant donc la même donnée sans les accents (tous ne sont pas géré), les espaces...
(function(){document.getElementById('edit-field-id-und-0-value').value=(document.getElementById('edit-name').value).replace(/\s+|'/g,'').replace(/\%C3%A9|%C3%A8|%C3%AA/g,'e').toLowerCase();})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment