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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T01:49:27+00:00 2026-06-04T01:49:27+00:00

Html <input type=text id=match1> <div id=divf>It is a div which has a dark future</div>

  • 0

Html

<input type="text" id="match1">
<div id="divf">It is a div which has a dark future</div>
<button>Not Remove</button>

and script

$(function(){
    $("input").blur(function()
    {
       $("#divf").remove(); 
    });
});

Now as it is clear from code i want the div to be removed on blur on input .But i don’t want div to be removed if someone is clicking on button .I have no idea how to do it.Can somebody solve this problem

  • 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-06-04T01:49:28+00:00Added an answer on June 4, 2026 at 1:49 am

    If you want to put on just text field having id match1 then div will be removed only when the field has blue

    $(function(){
    
       var isButtonClicked = false;
       $('button').one('click', function(){
          isButtonClicked = true;
       });
    
        $("#match1").blur(function()
        {
           if(!isButtonClicked)
                $("#divf").remove(); 
        });
    });
    

    If you want to put on just type text then the div will be removed on blue of every text box

        $(function(){
           var isButtonClicked = false;
           $('button').one('click', function(){
          isButtonClicked = true;
        });
    
        $("input[type=text]").blur(function()
            {
               if(!isButtonClicked) 
                   $("#divf").remove(); 
            });
        });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

HTML has an input button type to reset all fields in a form to
CSS : form input:not([type='button']),form input:not([type='submit']) { width: 200px } HTML : <form> <input type='button'
I have the following HTML: <input type=email id=email> I want to type text into
How to change the color of content in HTML input type text while entering
In html code I am using code <input type = text id = abc@def.com>
Is there a simple way to upload a single file through HTML input type
I have a page with File html input field and a Submit button as
I've 2 asp listbox controls and an html input button, and using js i
I want to read the file path from html input type=file (the entry selected
I'm trying to assign a variable from a html text input value and then

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.