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 6746127
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T12:17:11+00:00 2026-05-26T12:17:11+00:00

I am a beginner in jQuery and I want to built a simple jQuery

  • 0

I am a beginner in jQuery and I want to built a simple jQuery alert window without using the jQuery UI package, I saw some plugin on line, but I am trying to built it from scratch, what I want is that when a button gets clicked, it comes up an alert window with ok and cancel button in it, and when click ok go to another action like navigate to a link and cancel just close the window. if anyone could show me a quick code example so that I got some idea how to do it would be great, thanks for help.

So I assume the html code structure probably like this:

 <input type = "button" value="show alert">

<script>
 $("input").click(function(){
   )};
 </script>
  • 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-26T12:17:11+00:00Added an answer on May 26, 2026 at 12:17 pm

    You have to write your own CSS but here is an example;

    HTML:

    <input type="button" id="redirect" value="show alert" />
    <div id="alertWindow">
        You'll be redirect to google.com. Continue?
        <br /><br />
        <input type="button" id="btnOk" value="OK" /> <input type="button" id="btnCancel" value="Cancel" />
    </div>
    

    CSS:

    #alertWindow {
      display: none;
      text-align: center;
      border: 1px solid #333;
      width: 200px;
      height: 80px;
      border-radius: 5px;
      padding: 10px;
    }
    #btnOk, #btnCancel { width: 70px; }
    

    And finally Javascript:

    $(function() {
        $("#redirect").click(function(){
          $('#alertWindow').show();
          return false;
        });
        $('#btnCancel').click(function() {
            $('#alertWindow').hide();
        });
        $('#btnOk').click(function() {
            location.href = 'http://www.google.com';
            return false;
        });
    });
    

    Here is a working copy of this code on jsFiddle

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

Sidebar

Related Questions

HI All, I'm a veritable JS beginner and thus I've been using some simple
I'm a jQuery beginner. I'm trying to code a very simple using $.get(). The
Beginner jquery question. I am using the Tokenizing Autocomplete Text Entry plugin, with the
I am a beginner at Jquery. What i want is to display the data
I want to get better at JQuery, but I don't know what type of
I am a total jQuery (and JS) beginner. For my first attempt, I want
I'm a complete beginner when it comes to Jquery, Javascript etc but I've managed
i m a beginner... here i m using the jquery for showing search results
I wrote a beginner jQuery plugin which validate a form. this jQuery Plugin show
I'm a beginner and not remember all script in jquery. what i want to

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.