Well I have the live preview of text going using jQuery.
But is there a way where I can put in HTML tags and the HTML won't show but effects the text? Like typing <h1>
and the tags turn into headings?
So far:
$(document).ready(function(){
$('#text').keypress(function() {
$('#live').text($(this).val());
});
}); // end jQuery