function set_cache(key,value){ if(key=='') return false; localStorage.setItem(key, value); } function get_cache(key){ return localStorage.getItem(key); } function getTable(data) { $.ajax({ type: 'post', async:false, url:'/index.php?g=Home&m=Index&a=getTable', dataType: 'json', data: {data}, success: function (res) { data = res.data; } }); return data; }