Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7175223
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T16:14:25+00:00 2026-05-28T16:14:25+00:00

When a user clicks an link to an external site, how can I display

  • 0

When a user clicks an link to an external site, how can I display a modal pop-up window for a few seconds (indicating that it’s redirecting to an external site) and then open the link in a new window.

I’m already using JQuery UI dialogs. Preferably, I don’t want to have modify the HTML (ie. to create a dialog as JQuery UI dialog requires) but would like pure JQuery/JS solution, which will create/inject the dialog
and display it.

My attempt so far:

$('a[rel=external]').click(
    function(event)
    {   
        event.preventDefault();
        $('#redirectDialog').dialog('open').delay(2000);
        $('#redirectDialog').dialog('close');
        window.open(this.href);
        return false;
    }
);

Unfortunately, the dialog doesn’t show up – it opens the link in a new window immediately.

Any help to get the dialog displaying, a brief pause, and then closing down and then opening the link, and help in creating the dialog on the fly would be greatly appreciated.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T16:14:26+00:00Added an answer on May 28, 2026 at 4:14 pm

    Why not use an explicit timeout? Something like this:

    $('a[rel=external]').click(function(event) {
        event.preventDefault();
        $('#redirectDialog').dialog('open');
    
        var href = this.href;
        setTimeout(function() {
            $('#redirectDialog').dialog('close');
            window.open(href);
        }, 2000);
        return false;
    });
    

    You use setTimeout to get your delay and then do your window.open in the setTimeout callback.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here's the use case: A user clicks on a link that opens a window
If I have an iFrame and the user clicks a link/button/whatever that loads a
I am creating a page that a user can click a link and it
I'm having an issue with the following situation. User visits site User clicks link
Use case: user clicks the link on a webpage - boom! load of files
I'm trying to load some stuff using AJAX when a user clicks a link,
In a fictitious web application ... The user clicks a link The server starts
My app should render html, to answer when a user clicks ajax-link. My controller:
When the user clicks on a link to generate report I make an AJAX
I have noticed when user clicks on a link with, say middle button, or

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.