I'm trying to open the rokbox login module through jquery. I want the pop up to appear as soon as the page (and the js) loads.
Normally the popup is triggered when a url is clicked which looks like this:
<a rel="rokbox[355 385][module=rt-popuplogin]" href="#">Login</a>
How would i trigger the pop up to appear with jquery?
I already tried using the click and trigger events with no avail. That line of html is btw loaded on the page. I just need to trigger the click event which doesn't seem to work...
It is wrapped in a span with id #login
so I selected the child with .find("a")
and then binding the click to it, but nothing.. Ideas?