Click here to Skip to main content
15,891,423 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi all,

Is there a way to interpret the html contents inside the JavaScript alert box ?

We need to show anchor tag inside the alert box, but it shows the html markup instead of rendering the link.

The demo code is as below.
XML
<html>
    <head>
        <script type="text/javascript" language="javascript">
        function show()
        {
            alert('<a href="http://www.codeproject.com/">Code Project</a>');
        }
        </script>
    </head>
    <body>
        <input type="button" id="show" value="show" onclick="show()">
    </body>
</html>

Here the alert box shows the html of anchor like below, but not as one link.
XML
<a href="http://www.codeproject.com/">Code Project</a>

I know that we can do this by jQuery modal, but still if anybody has tried doing it in JavaScript by overriding the default behavior, then please share.

Thanks in advance,
Tadit
Updated 11-Dec-12 2:04am
v2
Comments
Yashwanth R 10-Jun-15 8:18am    
@Tadit Dash I need same sample as u have explained above, can u share me the code if u have got the result.
Hi Yashwanth,

I did not able to find any solution for this. You can show a jQuery modal dialog for this type of requirement.

Thanks,
Tadit
Yashwanth R 11-Jun-15 0:54am    
Thank u Tadit.
Most welcome buddy. :)

1 solution

You can use a div instead of using the confirm box.
Refer this link How To Make Floating and Dimming a Div using JavaScript[^]
 
Share this answer
 
Comments
[no name] 11-Dec-12 8:18am    
If your aspx page is displayed in iframe then this concept will not work as expected.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900