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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T22:32:07+00:00 2026-05-13T22:32:07+00:00

I’m using Jquery UI 1./Dan Wellman/Packt Publishing to learn JQuery UI. I’m working on

  • 0

I’m using “Jquery UI 1./Dan Wellman/Packt Publishing” to learn JQuery UI. I’m working on the ‘Dialog widget’ chapiter.

After I’ve completed a series of exercises in order to build a Dialog widget (using Google Chrome), I then tried my work with Internet Explorer and Firefox.

The result has been disappointing.

  • Chrome was perfet
  • With Internet Explorer, (1) the title of the Dialog widget did not appear, (2) The location of the dialog widget was not correct (given the position: [“center”, “center”]). It was rather offset toward left.
  • With Firefox, the location was respected. However, only the outer container was visible. the content was missing, just a blank container.
  • Also using Option Show:true and Hide:true did only work with Chrome.

I wonder now if JQuery UI was meant to be used only with Google Chrome. I just think that I might be missing some directives to make it work with major browsers (as the author claimed in his book).

Here’s the code. Since, I’m using ASP.NET MVC, certain codes, such as the element to the css, do not appear. But, for the rest, all the functioning code is bellow.

<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">

<p>
    The goal of this tutorial is to explain one method of creating 
    model classes for an ASP.NET MVC application. In this tutorial, 
    you learn how to build model classes and perform database access 
    by taking advantage of Microsoft LINQ to SQL. In this tutorial, 
    we build a basic Movie database application. We start by creating 
    the Movie database application in the fastest and easiest way possible. 
    We perform all of our data access directly from our controller actions.
</p>
<div style = "font-size:.7em" id = "myDialog" title = "This is the title">
    In this tutorial -- in order to illustrate how you can build model classes
    -- we build a simple Movie database application. 
    The first step is to create a new database. Right-click the
    App_Data folder in the Solution Explorer window and select the menu option
    Add, New Item. Select the SQL Server Database template, give it the name
    MoviesDB.mdf, and click the Add button (see Figure 1).
</div>
</asp:Content> 

<asp:Content ID="Content3" ContentPlaceHolderID="ScriptContent" 
runat="server">

<script src="../../Content/development-bundle/jquery-1.3.2.js"
type="text/javascript"></script>
<script src="../../Content/development-bundle/ui/ui.core.js"
type="text/javascript"></script>
<script src="../../Content/development-bundle/ui/ui.dialog.js"
type="text/javascript"></script>
<script src="../../Content/development-bundle/ui/ui.draggable.js" 
type="text/javascript"></script>
<script src="../../Content/development-bundle/ui/ui.resizable.js"
type="text/javascript"></script>
<script 
src="../../Content/development-bundle/external/bgiframe/jquery.bgiframe.js"
type="text/javascript"></script>

<script type = "text/javascript">
    $(function() {
        var execute = function() { }
        var cancel = function() { }
        var dialogOpts = {
            position: ["center", "center"],
            title: '<a href="/Home/About">A link title!<a>',
            modal: true,
            minWidth: 500,
            minHeight: 500,

            buttons: {
                "OK": execute,
                "Cancel": cancel
            },
            show:true,
            hide: true,
            bgiframe:true

        };
        $("#myDialog").dialog(dialogOpts);
    });
</script>

Thank for helping.

EDIT

I’ve re-done the same exercise yesterday. From the beginning to the end, each time I’ve introduced a behavior, I’ve tested my work in all 3 browsers (IE, Firefox, Chrome).

  • Everything works until I add option Show and Hide. Then only Chrome works.
  • If I remove Show and Hide, everything works again.
  • If I keep only Show and Hide, everything works perfectly

Maybe Show and Hide options for dialog widget do not mix up well with other options.

Thanks for helping.

  • 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-13T22:32:08+00:00Added an answer on May 13, 2026 at 10:32 pm

    No, jQuery UI works in any of those browsers. It’s probably either the steps you’re following don’t work so well with the version you’re using or the version you’re using is old. I’ve used jQuery UI without issue on both browsers. If you don’t believe me, then open this URL in your browser:

    http://jqueryui.com/demos/dialog/

    In Firefox 3.6, it loads just fine for me.

    I’m not an expert on jQuery UI, but providing the code here might help.

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

Sidebar

Ask A Question

Stats

  • Questions 350k
  • Answers 350k
  • 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 figured it out - it happened because I reinstalled… May 14, 2026 at 6:57 am
  • Editorial Team
    Editorial Team added an answer I'm short on time so can't give a full detailed… May 14, 2026 at 6:57 am
  • Editorial Team
    Editorial Team added an answer If the elements to be created are not known in… May 14, 2026 at 6:57 am

Related Questions

I want use html5's new tag to play a wav file (currently only supported
In order to apply a triggered animation to all ToolTip s in my app,
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I've got a string that has curly quotes in it. I'd like to replace

Trending Tags

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

Top Members

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.