How to bind a dialog link created dynamically?
Hi,
If a have a route /user/:id that returns me a HTML and I create a dialog link, that calls it, like the following:
```js
$('#content').append('<a href="/user/1" data-rel="dialog">Dynamic</a>');
```
How can I bind it after the `mobileinit` already performed?
There is something like?:
```js
$('a').dialog();
```
Thanks guys!