Im using colorbox in php page as IFRAME.. colorbox popup always open on top of the page.. can i get it to middle of current view.
Thanks;
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
This is often due to loading
colorbox.cssafterjquery.colorbox.jsor stems from abad doctype. Both jQuery and colorbox.css need to be loaded prior to jquery.colorbox.js. ColorBox should be called or assigned to elements inside of jQuery’s ready method, which should be declared after jquery.colorbox.js.ColorBox requires a valid doctype and rendering in quirks mode is not supported. If you aren’t using the HTML5 doctype, make sure you are using the full doctype declaration (with URI) to insure rendering in standards mode.
Unfortunately, this abbreviated doctype renders the document in quirks mode for Internet Explorer:
The doctype with URI renders in standards mode for all browsers:
For more information, see A List Apart’s
primer on doctypes.