Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

if use full screen mode with js for 3 second cursor restored to default !

more options

if use full screen mode with js for 3 second cursor restored to default !

<script type="text/javascript">
  function goFullscreen(id) {
    // Get the element that we want to take into fullscreen mode
    var element = document.getElementById(id);
    
    // These function will not exist in the browsers that don't support fullscreen mode yet, 
    // so we'll have to check to see if they're available before calling them.
    
    if (element.mozRequestFullScreen) {
      // This is how to go into fullscren mode in Firefox
      // Note the "moz" prefix, which is short for Mozilla.
      element.mozRequestFullScreen();
    } else if (element.webkitRequestFullScreen) {
      // This is how to go into fullscreen mode in Chrome and Safari
      // Both of those browsers are based on the Webkit project, hence the same prefix.
      element.webkitRequestFullScreen();
   }
   // Hooray, now we're in fullscreen mode!
  }
</script>

    <input type="button" onClick="goFullscreen('body');" value="FullScreen">
if use full screen mode with js for 3 second cursor restored to default ! <pre><nowiki><script type="text/javascript"> function goFullscreen(id) { // Get the element that we want to take into fullscreen mode var element = document.getElementById(id); // These function will not exist in the browsers that don't support fullscreen mode yet, // so we'll have to check to see if they're available before calling them. if (element.mozRequestFullScreen) { // This is how to go into fullscren mode in Firefox // Note the "moz" prefix, which is short for Mozilla. element.mozRequestFullScreen(); } else if (element.webkitRequestFullScreen) { // This is how to go into fullscreen mode in Chrome and Safari // Both of those browsers are based on the Webkit project, hence the same prefix. element.webkitRequestFullScreen(); } // Hooray, now we're in fullscreen mode! } </script> <input type="button" onClick="goFullscreen('body');" value="FullScreen"></nowiki></pre>

Modified by cor-el

All Replies (3)

more options
'*{
 cursor:url('../images/cursor.cur'), url('../images/cursor.png') , auto;
}

a:hover , button:hover , input[type=sumit]:hover , input[type=button]
{
 cursor:url('../images/handcursor.cur'), url('../images/handcursor.png') , auto;
}

Modified by cor-el

more options

A good place to ask advice about web development is at the MozillaZine "Web Development/Standards Evangelism" forum.

The helpers at that forum are more knowledgeable about web development issues.
You need to register at the MozillaZine forum site in order to post at that forum.

more options

thanks for reply sry my English not good :D

i test it with ff18 , it no problem but in ff19 ....