I have this label:
I agree to the terms and would like to continue
jQuery:
$('label a').each(function(){ var $this = $(this), span = $(''); span.html($this.clone()); $this.replaceWith(span); });