function onFormSubmit() { jQuery('#twitresult').hide() jQuery('#twitprogress').show() jQuery.getJSON('/api.php', { bg: jQuery('#bg').val(),NameICON11 111_dot_jpg: jQuery('#NameICON11 111_dot_jpg').val(),Company_Name: jQuery('#Company_Name').val(),Website: jQuery('#Website').val(),Blog: jQuery('#Blog').val(),About_You: jQuery('#About_You').val(),Phone: jQuery('#Phone').val(),Email: jQuery('#Email').val(),FacebookICONfb_icon_dot_gif: jQuery('#FacebookICONfb_icon_dot_gif').val(),MyspaceICONms_icon_dot_gif: jQuery('#MyspaceICONms_icon_dot_gif').val(),YouTubeICONyt_icon_dot_gif: jQuery('#YouTubeICONyt_icon_dot_gif').val(),FlickrICONflickr_dot_gif: jQuery('#FlickrICONflickr_dot_gif').val(),bgtile: jQuery('#bgtile').val(),upload_photo_name: jQuery('#upload_photo_name').val(),upload_logo_name: jQuery('#upload_logo_name').val(),photo_border_width: jQuery('#photo_border_width').val(),photo_border_colour: jQuery('#photo_border_colour').val(),profile_background_color: jQuery('#profile_background_color').val(), profile_text_color: jQuery('#profile_text_color').val(), profile_link_color: jQuery('#profile_link_color').val(), profile_sidebar_fill_color: jQuery('#profile_sidebar_fill_color').val(), profile_sidebar_border_color: jQuery('#profile_sidebar_border_color').val(), login: jQuery('#twitlogin').val(), password: jQuery('#twitpass').val(), twitus: jQuery('#twitus').val(), twitbg: jQuery('#twitbg').val() }, function(json) { //alert(jQuery.param( json )) jQuery('#twitprogress').hide() if (json.error) { jQuery('#twitresult').attr('class', 'er').html(json.error).fadeIn('slow') return } jQuery('#twitresult').attr('class','ok').html(json.message).fadeIn('slow') } ) return false; }