why wont bebo let my sign up ?
$(function(){ $(‘#reply-preview’).click(function(){ $(‘#reply-preview-text’).html(‘ Loading Preview…’); $.post(‘/a/reply-preview’, { reply_preview_text:$(‘#reply’).val(), email:$(‘#email’).val(), anon:$(‘#anonymous’).attr(‘checked’), reply_pid: 258266 }, function(data){ $(‘#reply-preview-text’).html(data); }); }); $(‘#reply-poster’).submit(function(){ // remove any latent previews $(‘#reply-preview-text’).html(”); // dim out our screen $(‘#reply-poster input, #reply’).attr(‘disabled’,’disabled’); // let them know posting is happening $(‘#reply-preview-text’).html(‘ Posting…’); // compile and send $.post(‘/a/reply-post’, { reply_text: $(‘#reply’).val(), reply_email: $(‘#email’).val(), reply_anon: $(‘#anonymous’).attr(‘checked’), reply_pid: 258266 }, function(data){ if( data != ‘0’ ) { // something went wrong, don’t reset values $(‘#reply-preview-text’).html(data); } else { // all good, clear it out $(‘#reply’).val(”); $(‘#reply-preview-text’).html(‘ Sent!