I want to show a JQuery dialog conditionally on click event of an hyperlink .
I have a requirement like on condition1 open a JQuery dialogue and if condition1 is not satisfied, navigate to the page as referenced by 'href' tag of whose click event is in question.
I am able to call a function on link's click event. This function now checks the said condition by executing another URL (that executes my Spring controller and returns response).
All works perfect with only window.open being blocked by popup blocker.
$('a[href*=/viewpage?number]').live('click', function(e) {
e.preventDefault();
redirectionURL = this.href;
pageId= getUrlVars(redirectionURL)["number"];
$.getJSON("redirect/" + pageId, {}, function(status) {
if (status == null) {
alert("Error in verifying the status.");
} else if(!status) {
$("#agreement").dialog("open");
} else {
window.open(redirectionURL);
}
});
});
If I remove e.preventDefault();
from code, popoup blocker doesn't block the page, however for condition1 it then opens the dialogue as well as opens the 'href' page.
If I solve one, it creates issue for another. I am not able to give justice to both conditions simultaneously.
Could you help me solve this issue please?
Once this is solved I have another issue to solve i.e. navigation on dialogue's OK event :)
this worked for me.
Popup blockers will typically only allow
window.open
if used during the processing of a user event (like a click). In your case, you're callingwindow.open
later, not during the event, because$.getJSON
is asynchronous.You have two options:
Do something else, rather than
window.open
.Make the ajax call synchronous, which is something you should normally avoid like the plague as it locks up the UI of the browser.
$.getJSON
is equivalent to:...and so you can make your
$.getJSON
call synchronous by mapping your params to the above and addingasync: false
:Again, I don't advocate synchronous ajax calls if you can find any other way to achieve your goal. But if you can't, there you go.
Here's an example of code that fails the test because of the asynchronous call:
Live example | Live source(The live links no longer work because of changes to JSBin)And here's an example that does work, using a synchronous call:
Live example | Live source(The live links no longer work because of changes to JSBin)I had this problem and I didn't have my url ready untill the callback would return some data. The solution was to open blank window before starting the callback and then just set the location when the callback returns.
Windows must be created on the same stack (aka microtask) as the user-initiated event, e.g. a click callback--so they can't be created later, asynchronously.
However, you can create a window without a URL and you can then change that window's URL once you do know it, even asynchronously!
Modern browsers will open the window with a blank page (often called
about:blank
), and assuming your async task to get the URL is fairly quick, the resulting UX is mostly fine. If you instead want to render a loading message (or anything) into the window while the user waits, you can use Data URIs.