How will I refresh each iframe onclick? Thanks! Here's my js:
function Reload()
{
          $("#load").each(function()
          {
                    if($(this).is(':visible'))
                              $(this).attr('src', $(this).attr('src'));
          });
}
My iframe:
<iframe src="SALES/add.php" id="load" width="100%" height="670px" frameborder="1" margin="0" padding="0" scrolling="yes">
                    </iframe>                               
 
     
    