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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T11:19:55+00:00 2026-06-10T11:19:55+00:00

I need your help, How can the code below be modified such that when

  • 0

I need your help,

How can the code below be modified such that when a date is selected, that it will store the selected date into (var z) and then its value can be called back later. I can’t seem to figure this out, it should be simple, and right by eyes. What am I doing wrong?

<html>

<head>

<!-- LOAD JQUERY LIBRARY: -->  
    <link   href="jq/jquery-ui.css"         type="text/css" rel="stylesheet" />
    <script src="jq/jquery.min.js"          type="text/javascript"> </script>
    <script src="jq/jquery-ui.min.js"       type="text/javascript"> </script>

<script type="text/javascript">
var z

window.onload = function() {


                $('#dd').dialog({ 
                                    autoOpen:   true,
                                    modal:      true,
                                    overlay:    { opacity: 0.5, background: 'black'},
                                    title:      'Select the date:',
                                    height:     215, 
                                    width:      234,
                                    draggable:  false, 
                                    resizable:  false

                });//end of dialog_atip


$('#d1').datepicker({
            onSelect:function(){
                    z = $(this).val()
                    alert(z)
                    $("#dd").dialog("close")
            }

});




}//end of window.onload

function callback() { alert(z) }

</script>


</head>

<body>
<div style="display:none" id="dd">
<div id="d1">
</div>

</div>
<p><input onlick="callback()" type="submit" value="Submit" name="B1"></p>

</body>

</html>
  • 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-10T11:19:57+00:00Added an answer on June 10, 2026 at 11:19 am

    There seem to be a few things going on. The onclick was mispelled, and as was pointed out – semicolons were missing. This should work.

    <script type="text/javascript">
    var z;
    
    $(document).ready(function() {
      $('#dd').dialog({ 
           autoOpen:   true,
           modal:      true,
           overlay:    { opacity: 0.5, background: 'black'},
           title:      'Select the date:',
           height:     215, 
           width:      234,
           draggable:  false, 
           resizable:  false
    
       });//end of dialog_atip
    
    
      $("#B1").click(function(){ 
            callback();
      });
    
      $('#d1').datepicker({
         onSelect:function(){
                        z = $(this).val();
                        alert(z);
                        $("#dd").dialog("close");
         }
      });
    
    });//end of window.onload
    
    
    function callback() { 
        alert(z);
    }
    </script>
    

    I also modified the input button to:

    <input type="button" value="Submit" name="B1" id="B1">
    

    And you can also play around with the fiddle, here: http://jsfiddle.net/jE8tL/

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

Sidebar

Related Questions

Ok, people, I need your help. I've found some code here on Stackoverflow (can't
I need your help in JAVA (with some sample code if possible) regarding to
I need your help with some sample code for a situation I could not
I need your help. Say I have a code inside a for statement similar
I need your help. I'm trying to install php_apc.dll into my php directory. So
I need your help to translate a query into pyes. This query is working
I need some help on 2 points below 1) How I can pull the
I need help sorting a gridview, below is my code: Protected Sub TaskGridView_Sorting(ByVal sender
All, I have confuse below may need your help suppose I have a row
I'm new in Java and I need your help in implementing a GUI. Below

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.