jQuery Impromptu redirection
Hello :)
I have a problem wiyh the jQuery Impromptu plug in :
http://trentrichardson.com/Impromptu/index.php
I want that after displaying the box, when the user click "ok", it will be redirected to a page.
My actual code:
- $.prompt('Signup success : You can login !',{ opacity: 0.2, buttons: { ok: window.location.href = "/member/login.html" }});
I changed "ok: true" to "ok: window.location..."
The problem is that the redirection is made without waiting that I click on the ok button.
How can I make my script working?
thx