🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

Redirect Confirm is a jQuery plugin that displays a confirmation dialog to notify users when they are opening an external links of your website.

Bootstrap external-link

Documentation

#Redirect Confirm

Redirect Confirm Popup Message with Bootstrop 3

#Usage

$(document).ready(function() { 	jQuery(document.body).RedirectConfirm({ 		selector: ".selector a", 		excluding: 'data-rc-exclude', // excluding attribute 		title: 'Exiting our website', 		message: 'You are now leaving our website. We are not responsible for any external Web sites.', 		returnlbl: 'Continue', 		continuelbl: 'Return', 		targetUrl: '_blank' 	}); });

#Options Option | Description ---|--- selector | Your a tag selector class excluding | Add data-rc-exclude="true" link you want to exclude title | Popup modal title message | Popup modal description returnlbl | Redirect cancel button label continuelbl | Redirect confirm button label targetUrl | Url Target [Definition and Usage] (http://www.w3schools.com/tags/att_a_target.asp)


You May Also Like