/** * ----------------------------------------------------------------------------- * file: histoLoad.js * file version: 1.0.0 * date: */ function HistoLoad() { var get = function(id, token) { $.ajax( { type: "POST", url: "plugins/Histogram/hgram_ajax.php", async: true, data: { ajaxfct:"public.histo.build", id:id, token:token }, success: function(msg) { if(msg!='') { $('#iHistoTxt').remove(); $('#iHistoContent').append(''); } } } ); }; this.get = function (id, token) { get(id, token); } }