I need to run a search and replace on HTML similar to the following... I need to have \"Find Next\" \"Replace\" and \"Replace All\" options.... the trick is that I need to r
$('#sheet').children().each(function(){ $(this).html().replace('oldVal', 'newVal'); });