3

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

tereško
  • 58,060
  • 25
  • 98
  • 150
devforall
  • 7,217
  • 12
  • 36
  • 42

3 Answers3

9

Yes you can

Matt Briggs
  • 41,224
  • 16
  • 95
  • 126
1

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.

Community
  • 1
  • 1
Darin Dimitrov
  • 1,023,142
  • 271
  • 3,287
  • 2,928
0

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
  • 2,841
  • 2
  • 23
  • 23