Tuesday 17 March 2009

Modal div with JQuery

I Found a usefull JQuery plugin for modal div, it is the SimpleModal. It is pretty simple, it enables you to make a div, containing whatever you want, perform like a modal window.

Click for demo

Here are some code sample :

Simple call :
$('#modalContentTest').modal();

With callbacks :
$(this).modal({
onOpen: OnModalOpen,
onClose: OnModalClose,
persist: true
});

No comments:

Post a Comment