Jump to content

[Gr] Κάτι σαν javascript


Druner

Recommended Posts

Παίδες θέλω μια μικρή βοήθεια. Έχω ένα site και έχει stream tv και δεν θέλω να ξεκινάει αυτόματα το stream. Θέλω να βάλω ένα Button και μόλις το πατάει να του εμφανίζει το stream ή κάτι ανάλογο. 

Link to comment
Share on other sites

ok παιδες το βρήκα όριστε οποιος το θέλει

<html>
<body>
<div id="HiddenDiv" style="display:none;">Content</div>

<a href="javascript:ShowDiv()">Show Div</a> or <div onclick="ShowDiv()">Click Me</div>

<script language="javascript">
function ShowDiv()
{
document.getElementById("HiddenDiv").style.display = '';
}
</script>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...