HTMLGuyLLC / jAlert

jQuery alert/modal/lightbox plugin
https://htmlguyllc.github.io/jAlert/
MIT License
76 stars 35 forks source link

open link in new tab alert? #8

Closed mandricmihai closed 9 years ago

mandricmihai commented 9 years ago

Nice job with the videoAlert :+1: . It's posible to add an open in new tab alert link? Like this in html

<a href="http://google.ro" target="_blank"></a>
HTMLGuyLLC commented 9 years ago

Not sure what you mean. Can you try to rephrase your question? Also, just a heads up, I have a full-time job and won't be able to help you every day :P

mandricmihai commented 9 years ago

forget found a new way thanks

HTMLGuyLLC commented 9 years ago

If the button is IN the jAlert popup using the jAlert btns param, you can use target.

Example:

$.jAlert({
'btns': { 'text': 'Go to google', 'target': '_blank', 'href': 'http://google.com' }
});