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
3 Answers
Reset to default 6There'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
评论列表(0条)