This is a function that I'm using to build my charts:
$('#button_submit').click(function() {
var start_date = $('#start_date').val();
var end_date = $('#end_date').val();
var type = $('#type').val();
drawChart(start_date, end_date, type, unit)
});
function drawChart(start_date, end_date, type, unit) {
var jsonData = $.ajax({
//url: "server.php?start_date=" + start_date + "&end_date=" + end_date + "&type=" + type,
dataType: "json",
async: false
}).responseText;
var obj = jQuery.parseJSON(jsonData);
var data = google.visualization.arrayToDataTable(obj);
(...)
Is there a way to save my charts search based on these parameters: start_date, end_date, type which are obtained from a form? I want to save every search that user does while they are logged in.