and nothing is working. i tried to debug several times without success
$(function(){
$('#searchForm').submit(function(event){
event.preventDefault();
$('#MotifSearch').animate({
left: '25%',
width: '50%',
height: '75%'
}, 1500);
$('#motifGraphTitle').animate({
left: '25%'
}, 1500);
var formData = $(this).serialize();
var empty = '';
var jqxhr = $.post('formHandle.php', formData, loadGraph);
jqxhr.success(function(){
$.getJSON('loadTaxo.php', empty, loadTaxo).complete(function() {
google.load('visualization', '1.0', {
'packages':['corechart']
});
google.setOnLoadCallback(drawChart);
});
});
$('#taxoLabel').show(500);
// Set a callback to run when the Google Visualization API is loaded.
return false;
});//end submit
});*/