var timeout = null; function checkForResults() { //clear div $('#divResults').html(''); //read result directory and display $.getJSON('ajax/results.php?r='+Math.floor((Math.random()*100000)+1), function(data) { $.each(data, function(key, val) { if (val.indexOf(".pdf") !== -1) { $('#divResults').append(''); } else { $('#divResults').append(''); } }); }); timeout = setTimeout("checkForResults()", 5000); } function zoom(url) { clearTimeout(timeout); $('#divResults').html(''); } function zoomout() { checkForResults(); } function selectChanged(select) { if ($(select).val() == 'gif') { $('#spnGif').show(); $('#divURL').show(); $('#divHTML').hide(); $('#divConvert').hide(); $('#spnScreenshot').hide(); } else { $('#divConvert select').change(); $('#divConvert').show(); $('#spnScreenshot').show(); $('#spnGif').hide(); } } function selectConvertChanged(select) { if ($(select).val() == 'url') { $('#divURL').show(); $('#divHTML').hide(); } else { $('#divHTML').show(); $('#divURL').hide(); } } $(document).ready(function() { checkForResults(); });