Hi Shelane,

Have you considered using a simple confirm message?

For example:

$('a').click(function() {
        var c = confirm('are you sure?');
        if (!c) return false;
});

--Karl
____________
Karl Swedberg
www.englishrules.com
www.learningjquery.com




On Jun 4, 2008, at 6:25 PM, Shelane wrote:


If I click a link, I want to trigger a modal, and based on a response
from the modal, I either want to cancel the link click or make the
link be followed.  Has anyone done this sort of thing or know how to
accomplish it?

Reply via email to