views:

518

answers:

3

Hi everyone,

Is it possible to use SimpleModal (jquery plugin) with ASP.NET MVC. Since it has postback stuff init.

thanx

Owais

+8  A: 

Yes you can

Matt Briggs
ppl always downvote such a straight answers :)
Arnis L.
A: 

Since it's a jQuery plugin there's nothing to tie it to the ASP.NET postback model. It is server language agnostic. You can use it with PHP if you like as discussed here.

Darin Dimitrov
A: 

I know this is old, but just for the record, in the source, you need to change the container creation from appendTo('body'); to appendTo('form');

Eric Martin