Forum styling not working

Forum styling not working

Hi,

I'm trying to style a form using jquery, but it's not working, specifically the replacement of the (required) text with * or **. Can anybody see what is wrong with my code:

http://actualplus.arredemo.org/ch8/chapter8.html


// JavaScript Document

$(document).ready(function(){
                     $('legend').wrapInner('<span></span>');
                     });
                  
                  
$(document).ready(function(){
   var requiredFlag='*';
   var conditionalFlag='**';
   
   $('form :input')
   .filter('.required')
   .next('span').text(requiredFlag).end()
   .prev('label').addClass('req-label').end()
   .end()

   .filter('.conditional')
   .next('span').text(conditionalFlag);
});


Thanks!