I\'m trying to do a string replace in a textarea after the user has entered their content and nothing I\'ve tried is working. Any help would be greatly appreciated. This is wher
Try this,
Live Demo
[$("#field_id_29").bind("keyup", function() { var text = $(this).val(); text = text.replace(/source/g, "www") $(this).val(text); });