1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
jQuery(function($) { "use strict"; $('#import-posts').click(function() { alert('TODO: import'); // stop event return false; }); $('#export-posts').click(function() { $('#export-posts-form').submit(); // stop event return false; }); });