Hello folks,

I have a strange thing happening here:

[code]
<div id="account-login" class="dialog">
        <!-- Login Area -->
        <form action="" method="post">
                <label for="email">email</label>
                <input name="field" type="text" id="email" />
        </form>
</div>

$(function() {
                $(".dialog").dialog({
                        bgiframe: true,
                        width: 700,
                        height: 300,
                        modal: false,
                        draggable: true,
                        resizable: 'cancel'
                });
        });
$('#account-login').dialog({ buttons: { "Ok": function() { $
(this).dialog("close"); } } });
[code]

For some reason when I insert the jQuery here, the 'dialog' here is
given an inline width property of 300px and ignores the 700 that I
require.

Is there a reason for this?

Thanks
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to