javascript - Position jQuery dialog box - Stack Overflow

I've tried a million solutions and none seem to work. I just need to push my jQuery dialog box abo

I've tried a million solutions and none seem to work. I just need to push my jQuery dialog box about 50px from the top of the page. Any ideas how?

function message() {
    $("#message").dialog({
      title: 'Title here',
      draggable:false,
      minHeight:100,
      resizable: false  
    });
 }

I've tried a million solutions and none seem to work. I just need to push my jQuery dialog box about 50px from the top of the page. Any ideas how?

function message() {
    $("#message").dialog({
      title: 'Title here',
      draggable:false,
      minHeight:100,
      resizable: false  
    });
 }
Share Improve this question asked Mar 30, 2013 at 7:52 user1661548user1661548
Add a ment  | 

3 Answers 3

Reset to default 6

There's a position parameter for that, it accepts an array with X and Y coordinates :

function message() {
    var myPos = [ $(window).width() / 2, 50 ];

    $("#message").dialog({
      title: 'Title here',
      draggable:false,
      minHeight:100,
      position: myPos,
      resizable: false  
    });
}

FIDDLE

Like adeneo mentioned, dialog has a position option which accepts a few data types, including jQuery-UI's fancy position object.

Given all the options, I think the cleanest and clearest way to specify the position you want is like this:

var myPos = { my: "center top", at: "center top+50", of: window };

Try it in jsFiddle

Have you tried this? css code .myPosition

.myPosition {
    position: absolute;
    top: 20px;
}

and jquery

$('.selector').dialog({ dialogClass: 'myPosition' });

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743698120a4492103.html

相关推荐

  • javascript - Position jQuery dialog box - Stack Overflow

    I've tried a million solutions and none seem to work. I just need to push my jQuery dialog box abo

    17小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信