jquery second click no works when add class and remove class
jQuery(document).ready(function() { if(jQuery("#init").hasClass("show_box")) { jQuery("#init").click(function() { jQuery("#box").show(1000); jQuery("#init").removeClass("show_box"); jQuery("#init").addClass("hide_box"); }); } }); jQuery(document).ready(function() { if(jQuery("#init").hasClass("hide_box")) { alert("ok"); jQuery("#box").hide(1000); } }); <div id="box" style="position:relative;width:100px;height:100px;background-color:red;display:none";></div> <span id="init" class="show_box"> Box Action </span> As you can see the jquery script show div with id…