(function($) {
$(document).ready(function() {

  var scJoueurId = scInput_JoueurId;


  function refreshScreen(data) {
    if(data['statut'] == 0) {
      window.location.href = 'index.php?j=' + scJoueurId;
    }


  }

  function refresh() {
    $.get('backend/jeu.php?j=' + scJoueurId)
      .done(function(data, text, jqxhr) {
        refreshScreen(  JSON.parse(jqxhr.responseText) );
      })
      .fail(function(jqxhr){
//        alert(jqxhr.responseText);
      })
      .always(function(){
        refreshTimer = setTimeout(refresh, 1000);
      });
  }

  refresh();
  var refreshTimer;






});
})(jQuery);