The plugin would be great to use a a form where a user could click on a link next to a input field and the modal window opens showing values for this field (populated via Ajax) and then could select a single or multiple values which then get populated in the input field after the modal window closes.
I use a modified version of thickbox but its limiting and in situations where I have to use thickbox and nyromodal ...the css of these plugin tends to clobber each other.
It will be great to have a single plugin that can be used in all situations connected with modal windows.
Thanks in advance
Mat
What in Nyromodal is limiting you to do this? You could do var selected; $.nyroModalManual({url : "someurl to fetch", endShowContent : function(modal, settings){ $('#nyroModalContent select').bind('change', function(){}); selected = $(this).val(); }, endRemove : function(){ // do something with selected }});