<script type="text/javascript"> $(document).ready(function(){ window.setInterval(function(){ var x = $("#a").load("refresh_time.php"); },100); if(x >= 100) alert("go go") ; }); </script>
<script type="text/javascript"> $(document).ready(function(){ window.setInterval(function(){ var x = $("#a").load("refresh_time.php"); },100); if(x >= 100) alert("go go") ; }); </script>
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <script type="text/javascript"> $(document).ready(function(){ function alertt(a){ if(a> 100) alert('zrobiłem się wiecej niż 100 razy'); } var x = 1; window.setInterval(function(){ $("#a").html("refresh_time.php" + x); alertt(x); x = x + 1; },100); }); </script> </head> <body> </body> </html>