I have many divs with class .modal-dialog
and a data field like data-modal='student'
and set it to display:none
I select and store it on variable like
modal_dialog= $('.modal-dialog')
Now I need to show modal with a particular data-modal attribute.
I tried
modal_dialog.hasData('student').show();
modal_dialog.data('student').show();
but didn't work. Any idea how to get this work?