Skip to main content

Add iframes to Scripts

<script type="text/javascript">
// Code to add iframe titles for accessibility / screen readers
setTimeout(
  function() 
  {
     // First iFrame Title
     $("iframe").eq(0).attr("title", "Local Pollen Levels Data");
     // Second iFrame Title
     $("iframe").eq(1).attr("title", "Pollutant Levels Data");
  }, 1000);

</script>