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 :)
try this, it works for me,
Is fiddle for this http://jsfiddle.net/safeeronline/70kdacL4/1/
This code help me. Hope this help some people
The observation that the event had to be initiated by the user helped me to figure out the first part of this, but even after that Chrome and Firefox still blocked the new window. The second part was adding target="_blank" to the link, which was mentioned in one comment.
In summary: you need to call window.open from an event initiated by the user, in this case clicking on a link, and that link needs to have target="_blank".
In the example below the link is using class="button-twitter".
Try using an a link element and click it with javascriipt
and the script
Use it like this
you can call window.open without browser blocking only if user does directly some action. Browser send some flag and determine that window opened by user action.
So, you can try this scenario:
I am using this method to avoid the popup blocker in my React code. it will work in all other javascript codes also.
When you are making an async call on click event, just open a blank window first and then write the URL in that later when an async call will complete.
on async call's success, write the following