<!DOCTYPE html>
<html>
<head>
<title>Title</title>
<style>body {width: 500px;}</style>
<script type="application/javascript">
jQuery(document).ready(function($){
function init() {
return true;
}
keyword.each(function( i,e ){
// console.log('here');
if ( $(this).text() == 'var' ) {
$(this).html( '<span class="var">var</span>' )
}
});
});
</script>
</head>
<body>
<p checked class="title" id='title'>Title</p>
<!-- here goes the rest of the page -->
</body>
</html>