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 want to add a confirmation pop-up on a link in rails. Since the default css for the browsers confirm: method can't be changed, I decided to use bootbox. ( http://bootboxjs.com/ )

Let's say I have the following link in my rails application

= link_to "asd", root_path(), id: "test"

The following javascript code opens a pop-up , the result is set correctly, what I need now is to perform the link access if the user approved the confirm.

$("#test").click(function(e) {
  e.preventDefault();
  bootbox.confirm("Are you sure?", function(result) {
    if (result) {
        // ???
    } else {
        return false;
    }
  });
});

Thanks :)

share|improve this question

1 Answer

$("#test").click(function(e) {
  e.preventDefault();
  bootbox.confirm("Are you sure?", function(result) {
    if (result) {
      window.open($(this).attr("href"),"_self");
  });
});

I figured it out, it wasn t complicated at all, I'm surprised no one answered :-(

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.