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 need to add an HTML href link in the confirm dialog box, but what I am getting is the text of the href not the HTML tag).

return confirm("Changes to your financial details may affect your GST or tax status for items already for sale via Momento Shop. Please read and confirm the Momento Shop<a target='_blank' href='/pages/terms_print'>terms and conditions.</a>")

Output of above code is:

Changes to your financial details may affect your GST or tax 
status for items already for sale via Momento Shop. Please 
read and confirm the Momento Shop terms and conditions.

But I need terms and conditions become a link (able to be clicked).

share|improve this question

3 Answers

You can't do this in the built-in confirmation dialog.

Have a look at some of the available UI libraries around. jQuery UI's dialog component seems like a good fit.

share|improve this answer

The default JavaScript confirm dialog cannot handle links (or any other rich text for that matter). You may look into using a more complex dialog library.

share|improve this answer

The confirm() from JS will not do what you are trying. You need Modal dialogue windows which can be created using some JS tool kit like jQuery

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.