[jQuery] jqModal problem with multiple popups

[jQuery] jqModal problem with multiple popups


Hi ,
I am having problem with JqModel. i am not able to show the multple
pop up in the one page.
I am using below code
$(document).ready(function() {
$("#dialog").jqm(); //this is for single popup this is working
// $("#dialog,#dd").jqm(); I am using this code for the multiple
popups. This is NOT WORKING
});
IN $("#dialog,#dd").jqm(); It is showing the same popup ( of #dd i.e.
the ID that is last in the queue) for both the links.
----- BOF of HTML PART -----------
     <a href="#" class="jqModal">Content View </a>
<div class="jqmWindow" id="dialog" >
<a href="#" class="jqmClose">Close</a>
Dummy text Dummy text Dummy text Dummy text Dummy text Dummy
text Dummy text
    </div>
<a href="#" class="jqModal">Content View 1 </a>
<div class="jqmWindow" id="dd">
     <a href="#" class="jqmClose">Close</a>
Dummy text Dummy text Dummy text Dummy text Dummy text Dummy text
Dummy text
    </div>
----- EOF of HTML PART -----------
Please help
Thanks