javascript - need to know a command for jqModal to close a popup -


environment:

i using jqmodal plugin jquery create popups. have window pops up. clicking trigger inside window opens another.

requirement:

i need close previous window after new 1 opens.

i can use $('#id').jqmhide();, hide it. need close when it's using class jqmclose on clickable input.

i need close programmatically without clicks...

thanks!

since question hasn't gotten attention, thought might put conjecture. if know classes uses close, can like:

const el = $('#id') el.addclass('jqmclose') //etc. animations/hiding someotherfunctiontorunon(el) //for additional processing, data serializing , propogation 

does help?


Comments

Popular posts from this blog

How to understand 2 main() functions after using uftrace to profile the C++ program? -

c# - Update a combobox from a presenter (MVP) -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -