[jQuery] jqModal re-binding

[jQuery] jqModal re-binding


hi,
I have let say an element which I use as for dialog's let say :
<div id=dialog><div id=content></div></div>
then i use :
$('#dialog').jqm({ ajax: url, target: '#content' });
so far ok.. it works. But now I want to reuse this dialog.
But if I try to bind again with different url2:
$('#dialog').jqm({ ajax: url2, target: '#content' });
It still uses the old url for ajax fetch ??
How can I change this behavior, so I can pass different urls ?
Opps forgot the most important thing, I'm using jqModal ;)