Click here to Skip to main content
15,890,282 members
Home / Discussions / JavaScript
   

JavaScript

 
Questionimage click make login/register appear Pin
Peter Roman7-Oct-15 2:06
Peter Roman7-Oct-15 2:06 
SuggestionRe: image click make login/register appear Pin
Richard Deeming7-Oct-15 2:44
mveRichard Deeming7-Oct-15 2:44 
GeneralRe: image click make login/register appear Pin
Peter Roman7-Oct-15 6:34
Peter Roman7-Oct-15 6:34 
GeneralRe: image click make login/register appear Pin
Richard Deeming7-Oct-15 7:54
mveRichard Deeming7-Oct-15 7:54 
GeneralRe: image click make login/register appear Pin
Peter Roman7-Oct-15 13:17
Peter Roman7-Oct-15 13:17 
GeneralRe: image click make login/register appear Pin
Wombaticus13-Oct-15 0:46
Wombaticus13-Oct-15 0:46 
GeneralRe: image click make login/register appear Pin
Peter Roman13-Oct-15 4:03
Peter Roman13-Oct-15 4:03 
GeneralRe: image click make login/register appear Pin
Wombaticus13-Oct-15 4:27
Wombaticus13-Oct-15 4:27 
With all due respect then, I think perhaps you need to start with some basics before worrying about building a site.... http://www.w3schools.com/[^] is a good reference place for starting out.

However - below is a very basic page showing the essence of what you're after - but don't expect me or anyone else here to do your work for you. Learn what you can, try things, and ask questions on specific things you get stuck on.
HTML
<html>
<head>
    <title></title>
    <style type="text/css">
       .show {
        display:inline;
        top:0;
        left:0;
        width:100%;
        height:100%;
       }
       .noshow {
        display:none;
       }
       .handy {
        cursor:pointer;
       }
    </style> 
    <script type="text/javascript">
        function enterSite() {
            document.getElementById("splash").className = "noshow";
            document.getElementById("login").className = "show";
        }
    </script>
</head>
<body>
   <div id="splash">
     <img src="relative path to image" onclick="enterSite()" alt="Click to enter site" class="handy" />
   </div>
   <div id="login" class="noshow">
      <h2>Log in here</h2>
   </div>
</body>
</html>

QuestionHow do i Restrict "@", "dotcom", ".com", "dot" from textarea Pin
Member 120389156-Oct-15 21:04
Member 120389156-Oct-15 21:04 
AnswerRe: How do i Restrict "@", "dotcom", ".com", "dot" from textarea Pin
Afzaal Ahmad Zeeshan6-Oct-15 21:58
professionalAfzaal Ahmad Zeeshan6-Oct-15 21:58 
QuestionDifference between Two dates Pin
Madhava_v28-Sep-15 0:56
Madhava_v28-Sep-15 0:56 
AnswerRe: Difference between Two dates Pin
DanielBrownAU28-Sep-15 14:13
professionalDanielBrownAU28-Sep-15 14:13 
QuestionArrays Pin
Member 1201551027-Sep-15 16:15
Member 1201551027-Sep-15 16:15 
QuestionRe: Arrays Pin
Blikkies28-Sep-15 19:55
professionalBlikkies28-Sep-15 19:55 
AnswerRe: Arrays Pin
User 118621168-Nov-15 20:10
User 118621168-Nov-15 20:10 
Questionneed help Pin
Member 1197204327-Sep-15 4:09
Member 1197204327-Sep-15 4:09 
AnswerRe: need help Pin
Richard MacCutchan27-Sep-15 4:23
mveRichard MacCutchan27-Sep-15 4:23 
AnswerRe: need help Pin
Nathan Minier1-Oct-15 6:39
professionalNathan Minier1-Oct-15 6:39 
GeneralRe: need help Pin
Member 119720431-Oct-15 8:10
Member 119720431-Oct-15 8:10 
GeneralRe: need help Pin
Member 1197204310-Oct-15 11:15
Member 1197204310-Oct-15 11:15 
GeneralRe: need help Pin
Nathan Minier13-Oct-15 1:23
professionalNathan Minier13-Oct-15 1:23 
QuestionSet up a counter to count the number of times an alert is triggered in a website. Pin
Rajesh_198025-Sep-15 9:18
Rajesh_198025-Sep-15 9:18 
AnswerRe: Set up a counter to count the number of times an alert is triggered in a website. Pin
Wombaticus8-Oct-15 1:25
Wombaticus8-Oct-15 1:25 
Questionhow to perform color effect on image in imagemagick? Pin
Rajiv Rahi24-Sep-15 2:24
professionalRajiv Rahi24-Sep-15 2:24 
QuestionCannot get dynamic javascript content from web page Pin
elelont223-Sep-15 3:08
elelont223-Sep-15 3:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.