Hello,
for some reason google.load('visualization', '1.0', {'packages':
['corechart']}); is not working for me..
all i'm getting is connecting... and the page is stuck

the code:
$('#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 = '';
    $.post('formHandle.php', formData, loadGraph);
    $.getJSON('loadTaxo.php', empty, loadTaxo);
    $('#taxoLabel').show(500);
    google.load('visualization', '1.0', {'packages':['corechart']});

    // Set a callback to run when the Google Visualization API is
loaded.
    google.setOnLoadCallback(drawChart);
    return false;
});//end submit

also i included ajax api as needed:
<script type="text/javascript" src="https://www.google.com/jsapi";></
script>

Thank you for the help
Roy

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-visualization-api?hl=en.

Reply via email to