jplayer full screen

jplayer, jquery

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()
  }
 })

Problem

how can i detect jplayer is on full screen mode?

Original source