duplicate_page.js 564 B

12345678910111213141516171819
  1. jQuery(window).load(function (e) {
  2. jQuery('.dpmrs').delay(10000).slideDown('slow');
  3. });
  4. jQuery(document).ready(function () {
  5. jQuery('.close_dp_help').on('click', function (e) {
  6. var what_to_do = jQuery(this).data('ct');
  7. jQuery.ajax({
  8. type: "post",
  9. url: dp_ajax_url,
  10. data: {
  11. action: "mk_dp_close_dp_help",
  12. what_to_do: what_to_do
  13. },
  14. success: function (response) {
  15. jQuery('.dpmrs').slideUp('slow');
  16. }
  17. });
  18. });
  19. });