How about this, replacing @ with $:
$("body").children().each(function () {
$(this).html( $(this).html().replace(/@/g,"$") );
});
http://jsfiddle.net/maximua/jp96C/1/
How about this, replacing @ with $:
$("body").children().each(function () {
$(this).html( $(this).html().replace(/@/g,"$") );
});
http://jsfiddle.net/maximua/jp96C/1/