views:

52

answers:

1

Dear all, I Like to have an Popup Modal Dialog that need to show the list of options {like radio button select event .But I dont Know what i am Missing!.It work fine when No HTML Tag embed In Impromtu ,Does i include in CSS ,Any help

$(document).ready(function(){ $.prompt( ' Milk
',{ opacity: 0.2 }); });

When I run this No Radio Button shown in Popup dialog

+1  A: 

All you have told Impromtu is to show a message "Milk" inside the popup. You have not given it any radio button markup to show.

What you would need is something like :

$(document).ready(function(){ 
        $.prompt( '<input type="radio" value="1">Milk</input>',{ opacity: 0.2 }); 
});
redsquare
Thanks to point out the error
venkatachalam