I want to remove the text \"By:\" from an element in my website. I want the rest of the text to remain there. How can I achieve that with jQuery? Thank you.
The HTML
give an unique id to div, t:
$('#div_id').html($('#div_id').html().substring(3));
fiddle : http://jsfiddle.net/ChUB4/