Replace Text in jQuery -


html:

<textarea></textarea><br /> <a href="#">generate</a>  <span id="output"></span> 

jquery:

$('textarea').bind('keypress', function(event) {      var charcode = event.which;     var keychar = string.fromcharcode(charcode);      return /[a-za-z ]/.test(keychar);  });  var replacements = {     'a': '1',     'b': '2',     'c': '3' }  $('a').click(function() {     $('textarea').val(function(i, val) {         val = val.split('');          $.each(val, function(i, e) {             val[i] = replacements[e] ? replacements[e] : e;         });          return val.join('');     });     return false; }); 

http://jsfiddle.net/sta75/


how can modify existing code display replacement in $('span#output'); ? , side question, modifications can made make code more efficient?

here solution display replacement in #output :

$('textarea').bind('keypress', function(event) {          return /[a-za-z ]/.test(string.fromcharcode(event.which));  });  var replacements = {     'a': '1',     'b': '2',     'c': '3' }  $('a').on('click', function(e) {     e.preventdefault();    val =  $('textarea').val().split('');         $.each(val, function(i, e) {         val[i] = replacements[e] ? replacements[e] : e;     });     $('#output').html(val.join(''))  ;     }); 

http://jsfiddle.net/sta75/1/


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -