標籤:Javascript
-
網站 Cookie 管理與 GDPR 合規解決方案概述
在現今的網際網路環境中,網站經營者必須注意如何管理 Cookie 以及使用者的隱私權。本文將介紹「CMP 工具 (Consent Management Platform)」、自訂解決方案如何達到 GDPR 標準,並說明各…
閱讀全文 → -
WordPress Do WP_Query via Custom Ajax Function
<?php // functions.php function do_wp_query_via_ajax(){ //ini_set('display_errors', 1); //ini_…
閱讀全文 → -
Basic HTML Form With JS Fetch Submit Sample Code
<form id="htmlForm1" action="https://www.imnobby.com/" method="POST"> <div class="mb-3"> <l…
閱讀全文 → -
JavaScript Display Block or Display None With Important Property
document.getElementById("SuccessBox").style.setProperty("display", "block", "important"); document.getElement…
閱讀全文 → -
Javascript Download Image Screenshot From HTML Canvas
<!-- CSS --> <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.c…
閱讀全文 → -
Javascript Check if User is using Desktop or Mobile Devices (isMobile)
<script> (function () {var a={};var f=/iPhone/i,h=/iPod/i,i=/iPad/i,r=/\biOS-universal(?:.+)Mac\b/i,g=…
閱讀全文 → -
Javascript Dynamic Display YouTube Live Chat Message
Javascript Fetch live chat messages from API every 5 seconds Only new messages would be added to the screen d…
閱讀全文 → -
Javascript Plugin Starter Template
Javascript File // plugin.js function GoogleSearchMePlugin(options) { let defaultOptions = { base_url…
閱讀全文 → -
Append and Load Third-Party Javascript to HTML with Javascript
var scripts = document.getElementById("data").querySelectorAll("script"); for (var i = 0; i < scripts.le…
閱讀全文 → -
Javascript Random Key Generator
function js_random_key_generator(length) { var result = ''; var characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZab…
閱讀全文 → -
【Google Analytics 分析】如何把自己的流量過濾及排除 (一)
方法一: 使用「不透露資訊瀏覽器外掛程式」 下載 Google Analytics (分析) 不透露資訊瀏覽器外掛程式,使用後你的的訪客行為將會不被 Google Analytics (分析) JavaScript (g…
閱讀全文 →