Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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>
share|improve this question
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 '09 at 21:10

6 Answers

up vote 3 down vote accepted
<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>
share|improve this answer
although hopefully you're not still using inline event handlers for everything... – CrazyJugglerDrummer Nov 4 '09 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 '09 at 21:16

Try:

<input type="button" onclick="alert('alert for system number 2');" value="Show alert box" />
share|improve this answer

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

share|improve this answer

Yes you can

function testAlert(val){alert(val);}

share|improve this answer

Yes this is possible

<script type="text/javascript">
function testAlert(val){alert(val);}
</script>

<input type=text onclick='testAlert(this.string)' string="something" value="clik here">
share|improve this answer

alert("alert for system number 2");

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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