View Single Post
Old 01-17-2013, 08:07 AM   PM User | #3
Webbot
New Coder

 
Join Date: Dec 2012
Posts: 24
Thanks: 4
Thanked 0 Times in 0 Posts
Webbot is an unknown quantity at this point
Quote:
Originally Posted by DanInMa View Post
give this a shot

Code:
function MyCustomPopUp(element, content){
var CustomContent;
if (!content) {
ShowModalPopup(element)
} else {
CustomContent = content;
$(#"+element+").html(content);
ShowModalPopup(element)
}
}
onclick="MyCustomPopUp('name_of_div_in_popup_box');
onclick="MyCustomPopUp('name_of_div_in_popup_box',"MY CUSTOM CONTENT");
Thanks for your reply!

Newbie I am I dont really understand where to put the link to the content page, do you mean like this example?

Code:
function MyCustomPopUp(element, content){
var CustomContent;
if (!content) {
ShowModalPopup(element)
} else {
CustomContent = content;
$(#"+element+")content_page.html #content_div(content);
ShowModalPopup(element)
}
}
onclick="MyCustomPopUp('name_of_div_in_popup_box');
onclick="MyCustomPopUp('name_of_div_in_popup_box',"content_page.html #content_div");

Last edited by Webbot; 01-17-2013 at 08:10 AM..
Webbot is offline   Reply With Quote