I see you figured it out already, but i'm gonna post my suggestion anyway in case somebody else wonder how it can be done.
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Inc.Vat</title>
<style type="text/css">
.vat {
color: blue;
font-weight: bold;
font-family:Georgia, "Times New Roman", Times, serif;
font-size:12px;
font-style:italic;
padding-left: 6px;
}
</style>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript">
jQuery(document).ready(function($) {
$('.prodprice').append('<span class="vat">inc. Vat</span>');
});
</script>
</head>
<body>
<div class="prodprice"><strong>Price:</strong> <span class="price" id="pricediv0">£33.99</span> </div>
</body>
</html>
Bookmarks