I have a client who is requesting a modal be presented to site visitors, offering an email signup form. Is there a way to automatically fire a modal without clicking on a link?

For an example of this functionality, see http://ChelseaGreen.com/

Thanks!

Comments

Dave Reid’s picture

You could have a link (hidden or visible) on the site that would go to the modal version of the page you wanted to load. And then in a small custom JS for the frontpage, use $('a.homepage-modal').click();

brunodbo’s picture