an attempt:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script type="text/javascript" charset="utf-8">
google.load("jquery", "1.3");
</script>
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
var white_out = $("span[class=price] :first-child").text();
var all = $("span[class=price]").text();
var price = all.replace(white_out, "");
alert(price);
});
</script>
</head>
<body>
<span class="price">
$61.00
<span class="detailFreeShipping">With Free Shipping</span>
</span>
</body>
</html>
where the lines:
var white_out = $("span[class=price] :first-child").text();
var all = $("span[class=price]").text();
var price = all.replace(white_out, "");
might do the work, for a single element.