Created
September 21, 2013 20:45
-
-
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...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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