Whats the meaning of Jquery dialog: Is it separate web page or its part of web page?

(I don't know well Jquery).

Thanks

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

jQuery dialog will appear above the page but it is effectively part of the current page. When your loading a dialog you are loading a element in the DOM (Document Object Model, the HTML elements on your page) which will appear as a pop-up 'dialog' on top of the current page.

You can however load other pages, or content, into a dialog. When the dialog is opened you would make a call to the server to either include another page or load new content. In both cases you would normally be inserting this into the dom element on the current page which holds content for the dialog.

link|improve this answer
thank you very much Damien ! – Yosef Jun 6 '10 at 13:59
Hope that makes sense – Damien Jun 6 '10 at 14:00
feedback

It is part of the existing page, dynamically displayed via javascript.

Gives the appearance of a smaller window overlaying the current page, but in actuality, it is just another element within the page.

It can have characteristics that resemble a window, like the ability to move, resize and close.

See demos and documentation here: http://jqueryui.com/demos/dialog/

link|improve this answer
thank you very much Patrick ! – Yosef Jun 6 '10 at 14:02
@Yosef - You're welcome. :o) – user113716 Jun 6 '10 at 14:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.