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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T00:48:25+00:00 2026-06-17T00:48:25+00:00

I have a div tag within my contact form which holds the captcha items.

  • 0

I have a div tag within my contact form which holds the captcha items. I would like this section to be refreshed if the user finds the image unreadable. So I have placed an image link that would be used to initiate the refresh. I want that specific div to be updated and NOT the whole page. I tried all the possible ways the have put on the net, however, they don’t work for me for some and I’d rather get the whole page reloading right at the bottom of the refresh button.

I used this first,

<div id="captchadiv">
    <img src="http://localhost:8000/verifyimg.php" alt="Image verification" name="vimg" style="margin-left:87px" /><a id="refresh" href="#"><img src="images/refresh.jpg" height="40px" width="40px" alt="Refresh Captcha"/></a>
    <label class="text-form-long" style="margin-left:87px">To submit this form, please
    enter the characters you see in the image:
    <input type="text" size="12" name="imgverify" /></label>
</div><br><br>

<div class="buttons">
    <a href="#" class="button" data-type="reset">Clear Form</a>
    <a href="#" class="button" data-type="submit">Send Message</a>
</div>



<script> 
  $(function() {
     $("#refresh").click(function() {
            $("#captchadiv").load("contact.html");
        return false;
     });
  });
</script> 

and this second,

<div id="captchadiv">
    <img src="http://localhost:8000/verifyimg.php" alt="Image verification" name="vimg" style="margin-left:87px" /><a id="refresh" href="#" onClick="refreshCaptcha"><img src="images/refresh.jpg" height="40px" width="40px" alt="Refresh Captcha"/></a>
    <label class="text-form-long" style="margin-left:87px">To submit this form, please
    enter the characters you see in the image:
    <input type="text" size="12" name="imgverify" /></label>
</div><br><br>

<div class="buttons">
    <a href="#" class="button" data-type="reset">Clear Form</a>
    <a href="#" class="button" data-type="submit">Send Message</a>
</div>

<script>
   function refreshcaptcha() {
       var container = document.getElementById("captchadiv");
       var refreshContent = container.innerHTML;
       container.innerHTML = refreshContent;
   }
</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-06-17T00:48:26+00:00Added an answer on June 17, 2026 at 12:48 am

    You will have to use AJAX or websockets to get asynchronous updates without reloading the page.

    Read more about AJAX

    Example:

    function refreshcaptcha() {
        $.ajax({
        type: "GET",
        url: "your server link to get new image",
        data: "",
        complete: function(data){
            // Read data to get the new image
    
            // Supposing the data contains your updated captcha content
            var container = document.getElementById("captchadiv");
            var refreshContent = data;
            container.innerHTML = refreshContent;
        }
    });
    

    Update

    Working on comment by @Josso :

    <script>
       function refreshcaptcha() {
           var image = document.getElementsByName("vimg")[0];
           image.setAttribute("src", "http://localhost:8000/verifyimg.php?"+(new Date()).getTime());
       }
    </script>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a div tag which looks something like this: <div id=some id here
I have created a simple layout using the HTML div tag. I would like
I have this code which can display drop down in div tag of html.
I have a list of images within a div tag with the id sIMG
I have an ASP.Net page that contains a <div> with an <img> tag within.
Well i have a div tag that i show as a modal dialog this
I have a scrollable div tag (overflow). Now I'd like to use mouse to
Ok, i have a javascript function which toggles the innerhtml of a div tag
I have a div which belongs to the class .stickyNote and within that div
i have a div tag within a content tag as i am using a

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.