What is the html code for adding a checkbox when checked skips that page next

  • Thread starter Thread starter Arthur
  • Start date Start date
A

Arthur

Guest
visit to the site? use this website as an example [Edit] http://combatarms.nexon.net/Intro.aspx
Can you guys give me an example? like can u give me a tut how to make a page like that with the checkbox and eveything? remeber its an intro page.
 
Your example is not HTML, it's in flash.

You actually can't do this in HTML but you can do it in javascript using <input type="checkbox" onclick="document.location.href='http://example.com/'">
 
Also, what you can do is have the form, when being processed, set a cookie based upon the checkbox, and then you can have your site check the content of, or presence of, that cookie. That can be done with javascript or a variety of client- or server-side scripting languages.
 
Back
Top