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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T12:43:38+00:00 2026-05-16T12:43:38+00:00

This is script what I have currently – <script type=text/javascript> $(document).ready(function () { $(‘.RemoveSystem’).click(function

  • 0

This is script what I have currently –

<script type="text/javascript">
        $(document).ready(function () {
            $('.RemoveSystem').click(function () {
                var href = $(this).attr('href');
                var answer = confirm("Are you sure you want to delete this system?");
                alert(answer);
                if (answer) 
                    window.location = href;
            });
        });
    </script> 

Here is the link which is there for each record and we can delete each system when we click on its delete button –

 <%= Html.ActionLink("Delete", "RemoveSystem", new { SysNum = item.Id}, new { @class = "RemoveSystem" })%>

Now here is the problem the actionlink redirects no matter what happens and I need to stop it. I mean say the user presses cancel on the confirm the actionlink still executes and goes to RemoveSystem Action, where I want it to just stay on the page.I thought of using a HTML hyperlink but I dont know how I should pass id the value to the javascript in that case. Can anyone please help me out ?

  • 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-16T12:43:38+00:00Added an answer on May 16, 2026 at 12:43 pm

    You need to prevent the default action of the link like this:

    $('.RemoveSystem').click(function () {
      if (confirm("Are you sure you want to delete this system?")) 
        window.location = $(this).attr('href');
      return false;
    });
    

    Or this:

    $('.RemoveSystem').click(function (e) {
      if (confirm("Are you sure you want to delete this system?")) 
        window.location = $(this).attr('href');
      e.preventDefault();
    });
    

    Currently, the link is doing this function but also doing what it does with no JavaScript at all, which is to go to the href it has…that’s the behavior you need to prevent from happening.

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

Sidebar

Ask A Question

Stats

  • Questions 515k
  • Answers 515k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I would not recommend last approach. :-) For the quick… May 16, 2026 at 6:40 pm
  • Editorial Team
    Editorial Team added an answer For Red Hat Enterprise Linux servers, you likely just need… May 16, 2026 at 6:40 pm
  • Editorial Team
    Editorial Team added an answer You could use a regular expression to filter non ASCII… May 16, 2026 at 6:40 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

I currently have a script which will pull in image contents from a database
Currently I have a perl script that runs forever on my server, checking a
I currently have code like this in a web based file called 'view_file.php' to
I have this script that I'd like to in addition save as a xls
Summary I currently have a NAnt build script that performs a vssget on either
I have a Python script that will be doing a lot of things that
I currently have a scrolling anchor animation that also adds an active class to
What I'm trying to do is this. I have a dictionary laid out as
I've created a Greasemonkey script which replaces a page function: (function() { var oldFunc
here's what I currently have, unfortunately I cannot seem to figure out how 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.