golden hour
/home/phakp/public_html/wp-content/plugins/whp-hide-posts/assets/admin/js
⬆️ Go Up
Upload
File/Folder
Size
Actions
whp-script.js
662 B
Del
OK
Edit: whp-script.js
(function ($) { $(function () { const $selectAll = $("#whp_select_all"); if ($selectAll.length == 0) { return; } const totalChecked = $( "input[type=checkbox][id^=whp_hide_]:checked" ).length; const totalOptions = $("input[type=checkbox][id^=whp_hide_]").length; if (totalChecked === totalOptions) { $selectAll.attr("checked", true); } const toggleAllOptions = function () { if ($(this).is(":checked")) { $("input[type=checkbox][id^=whp_hide_]").prop("checked", true); } else { $("input[type=checkbox][id^=whp_hide_]").prop("checked", false); } }; $selectAll.on("change", toggleAllOptions); }); })(jQuery);
Save