Search code examples
jqueryjplayer

jplayer full screen


how can i detect jplayer is on full screen mode?


Solution

  • ok, this is how i had to go:

      $("a.jp-full-screen").click(function(){
    
      if($(this).attr("title")=="full screen"){
             $(".hover, ul#navigation").hide()
      }
      })
    
    
      $("a.jp-restore-screen").click(function(){
         if($(this).attr("title")=="restore screen"){
             $(".hover, ul#navigation").show()
      }
     })