How To Add JavaScript Popup Boxes to Blogger

Posted by Lasantha Bandara File Under : java script 0 Comment

Use below codes to add Popup Boxes to your blog post or as a page element.

Alert Box

Code:

<script type="text/javascript">function show_alert(){alert("YOUR MESSAGE HERE!")}</script><input type="button"onclick="show_alert()"value="Show alert box"/>

Result:

Confirm Box

Code:

<script type="text/javascript">function show_confirm(){confirm("YOUR MESSAGE HERE!")}</script><input type="button"onclick="show_confirm()"value="Show confirm box"/>

Result:

Prompt Box

Code:

<script type="text/javascript">function show_prompt(){prompt("YOUR MESSAGE HERE!","")}</script><input type="button"onclick="show_prompt()"value="Show prompt box"/>

Result:

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.