I want to call a function when a div shows (after show).
Does anybody knows how could I do this? I try to use something like that:
$(#someDiv).bind(\
try this
$(#someDiv).bind('show',function(){ callFunction(); });
or
$(#someDiv).on('show',function(){ callFunction(); });
function callFunction() { ............ }