main.php
  • Compliance Update
  • script.js function freehand_newcompliance(){ var realtxt = document.getElementById('realtxt').value; var month = document.getElementById('month').value; var year = document.getElementById('year').value; var country = document.getElementById('country').value; var act = document.getElementById('vvalueq').value; $('#cnt24').html(''); $.post("new-compliance-add-filter.php",{ realtxt: ""+realtxt+"", month: ""+month+"", year: ""+year+"", country: ""+country+"", act: ""+act+"", }, function(result){ $("#cnt24").html(result); }); } function freehand_newcompliance_due_date(){ var realtxt = document.getElementById('realtxt').value; var month = document.getElementById('month').value; var year = document.getElementById('year').value; var country = document.getElementById('country').value; var act = document.getElementById('vvalueq').value; $('#cnt24').html(''); $.post("new-compliance-add-filter-due-date.php",{ realtxt: ""+realtxt+"", month: ""+month+"", year: ""+year+"", country: ""+country+"", act: ""+act+"", }, function(result){ $("#cnt24").html(result); }); } function freehandComplianceRevesions(){ var realtxt = document.getElementById('realtxt').value; // var month = document.getElementById('month').value; // var year = document.getElementById('year').value; var country = document.getElementById('country').value; var act = document.getElementById('vvalueq').value; $('#cnt24').html(''); $.post("new-archive-add-filter.php",{ realtxt: ""+realtxt+"", // month: ""+month+"", // year: ""+year+"", country: ""+country+"", act: ""+act+"", }, function(result){ $("#cntRevisions").html(result); }); } function freehandOmittedCompliance(){ var realtxt = document.getElementById('realtxt').value; var month = document.getElementById('month').value; var year = document.getElementById('year').value; var country = document.getElementById('country').value; var act = document.getElementById('vvalueq').value; $('#cnt24').html(''); $.post("omitted-compliance-filter.php",{ realtxt: ""+realtxt+"", month: ""+month+"", year: ""+year+"", country: ""+country+"", act: ""+act+"", }, function(result){ $("#cnt24").html(result); } ); }