javascript - joomla popup that should close only by click button -


i using popup anywhere plugin in joomla. have display article page detail on popup @ time of user log in. here popup close on click out side of popup screen also, dont want this. popup should close @ time of clicking "agree" button article have.

please let me know if have other plugins or ideas.

this should prevent window being closed clicking away element:

$('#your-close-button').click(function(e){   e.stoppropagation(); }); 

Comments

Popular posts from this blog

rdbms - what exactly the undo information lives in oracle? -

bash - How do you programmatically add a bats test? -

java - Getting exception in JDBC thin driver -