Thanks Justinas very much,but can i make it more clear
i have hyperlink in php(
www.bbc.com) , i want when the user click this
hyperlink,the bbc site appears in the pop up window
On Jun 30, 1:14 pm, Justinas Urbanavicius <
justin...@gmail.com> wrote:
> look at the main site examples, everything is there. the first example is
> what you need, if you want modalbox to load content from file like in this
> example frame_send-link.html.
>
> <a href="frame_send-link.html" title="Simple form" onclick="
> Modalbox.show(this.href, {title: this.title, width: 600}); return false; ">
> Send link to a friend</a>
>
> if you have content already in your site just hidden away in some div try
> this:
> <a href="javascript:;" title="Simple form" onclick=" Modalbox.show(*
> $('id-of-my-div')*, {title: this.title, width: 600}); return false; "> Send
> link to a friend</a>
>
> $('id-of-my-div') in the brackets is the id of the div element you wan to
> load content from.
>