vote up 0 vote down star

I'm looking for a simple javascscript alert box. I need to be able to pass the alert box a string of text.

Is something like this possible? My syntax is probably wrong.

<html>
<head>
<script type="text/javascript">
function show_alert()
{
alert(my_string_here);
}
</script>
</head>
<body>

<input type="button" onclick="show_alert()" value="Show alert box" string="alert for system number 2" />

</body>
</html>
flag

79% accept rate
I know my example makes no sense, I'm not a JS guru. thank you Bjorn for the tip, that worked perfect! – shaiss Nov 4 at 21:10

4 Answers

vote up 2 vote down check
<html>
<head>
<script type="text/javascript">
function show_alert(my_string)
{
alert(my_string);
}
</script>
</head>
<body>

<input type="button" onclick="show_alert('This will alert!')" value="Show alert box" string="alert for system number 2" />

</body>
</html>

This makes no sense thou. Better solution:

<html>
<head>
</head>
<body>

<input type="button" onclick="alert('Doh!')" value="Show alert box" string="alert for system number 2" />

</body>
</html>
link|flag
although hopefully you're not still using inline event handlers for everything... – CrazyJugglerDrummer Nov 4 at 21:15
No, but this example didn't make any sense. There's no need to create a separate function that does the exact same thing as a regular alert() does. – Björn Nov 4 at 21:16
vote up 0 vote down

alert("alert for system number 2");

link|flag
vote up 0 vote down

What are you trying to do? alert('Your string here') should do the trick if you really need an alert.

link|flag
vote up 1 vote down

Try:

<input type="button" onclick="alert('alert for system number 2');" value="Show alert box" />
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.