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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T14:14:43+00:00 2026-06-08T14:14:43+00:00

I am using a fullcalendar:- http://arshaw.com/fullcalendar/ and I am using jquery .post to get

  • 0

I am using a fullcalendar:-
http://arshaw.com/fullcalendar/

and I am using jquery .post to get a parameter back to the same page to generate some result, and this is working well.

At the same time, I wish to use jquery ui dialogue to hold the displayed contents. While pasting the sample codes from official site, the example works. However, when combining the .post output with dialogue, it was not successful.

I would like to seek help in combining the below 2 sets of scripts:-

//for generating .post output (working!)

<script>
function event_details(thevalue){
$.post('module/calendar/event_details.php',{
eid:thevalue},

function(output){
    $('#theeventmsg').html(output);
});
}
</script>
<div id='theeventmsg'></div>

//jquery ui dialogue (working!)

<script>
// increase the default animation speed to exaggerate the effect
$.fx.speeds._default = 1000;
$(function() {
    $( "#dialog" ).dialog({
        autoOpen: true,
        show: "blind",
        hide: "explode"
    });

    $( "#opener" ).click(function() {
        $( "#dialog" ).dialog( "open" );
        return false;
    });
});
</script>



<div class="demo">
<div id="dialog" title="Basic dialog">
    <p>This is an animated dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p>
</div>
<button id="opener">Open Dialog</button>
</div><!-- End demo -->

Can help??? Thanks a lot!!

  • 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-08T14:14:46+00:00Added an answer on June 8, 2026 at 2:14 pm

    Try something like this:

    <script>
      $.fx.speeds._default = 1000;
    
      $(document).ready(function() {
        $( "#dialog" ).dialog({ autoOpen: false });
    
        $('#button').click(function () {
          var data = { ... };
    
          $.post('module/calendar/event_details.php', data, function (output) {
            $('#dialog p').html(output);
            $( "#dialog" ).dialog("open");
          });
        });
      });
    </script>    
    
    <div id="dialog">
      <p>content</p>
    </div>
    
    <button id="button">button</button>
    

    Or:

    <script>
      $(document).ready(function () {
        function eventdetail(thevalue) {
          $.post('event_details.php', { eid: thevalue }, function (output) {
            $('#dialog p').html(output);
            $("#dialog").dialog({ autoOpen: true });
          });
        }
    
        $('#button').click(function () { eventdetail('value'); });
      });  
    </script>
    
    <div id="dialog">
      <p>content</p>
    </div>
    
    <button id="button">button</button>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using the jQuery FullCalendar ( http://arshaw.com/fullcalendar/docs/ ). I want to add some
I am using the jQuery Fullcalendar plugin (http://arshaw.com/fullcalendar). I am only using it for
I am using jquery calendar used with Google calednar http://arshaw.com/fullcalendar It shows the events
I'm using this jQuery Full Calendar: http://arshaw.com/fullcalendar/ According to their documentation, I can load
I am using the FullCalendar jQuery plugin: http://arshaw.com/fullcalendar/ I am also using the example
I am using a JQuery plugin to render a calendar ( http://arshaw.com/fullcalendar/ ). Problem
Using FullCalendar ( http://arshaw.com/fullcalendar/ ) to pull events from a MySQL database table via
I have a an application built with the jQuery based fullCalendar http://arshaw.com/fullcalendar/ My calendars
I'm using jQuery Fullcalendar from arshaw.com/fullcalendar/ and I would like to replace day number
I'm setting up an app using FullCalendar ( http://arshaw.com/fullcalendar/ ) that will allow the

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.