inherit
60633
0
Nov 27, 2024 9:50:33 GMT -8
Joilet
Lightning does strike the same place twice or more be careful
2,810
October 2005
joilet
|
Post by Joilet on Dec 22, 2014 2:45:37 GMT -8
How do I make one please? Thank ya - Jason [ b]<NoSpaceNorSpacesNorBoth>[ /b]
|
|
inherit
60633
0
Nov 27, 2024 9:50:33 GMT -8
Joilet
Lightning does strike the same place twice or more be careful
2,810
October 2005
joilet
|
Post by Joilet on Jan 14, 2015 20:54:35 GMT -8
Basically how do I code a pop up click on OK message box with Message Shown Please? Thanks ; ) : )
|
|
inherit
209486
0
Mar 6, 2016 15:03:59 GMT -8
T.C.
2,614
May 2014
tacochuck
|
Post by T.C. on Jan 15, 2015 4:40:57 GMT -8
Place in the forum wrapper between <head> </head> if you want it at the top or above
</body>
</html>
to place it at the bottom
Or place in the header/footer
<button onclick="myFunction()">Click Me</button>
<script> function myFunction() { alert("Your message here!"); } </script>
|
|
inherit
162752
0
Nov 7, 2024 3:58:23 GMT -8
Pebble
Where it all does or doesn't happen!
1,437
January 2011
pebbleleague
|
Post by Pebble on Jan 15, 2015 9:15:25 GMT -8
Place in the forum wrapper between <head> </head>
if you want it at the top or above </body>
</html>
to place it at the bottom Or place in the header/footer <button onclick="myFunction()">Click Me</button> <script> function myFunction() { alert(" Your message here!"); } </script> Doing it this way, change both instances of 'myFunction' to anther word eg: 'joiletsPopUpMessage' or something that wont be used by something else. myFunction is pretty generic and could cause problems if someone else has coded something with that function name.
|
|