window.location.search.includes('cro_mode=qa')
// or
window.location.search.indexOf('cro_mode=qa') > -1
// finding it in cookies:
function getCookie(name) {
const value = `; ${document.cookie}`;
const parts = value.split(`; ${name}=`);
if (parts.length === 2) return parts.pop().split(';').shift();
}
//then...
getCookie('cro_mode')
//or something like ...
const parts = document.cookie.split('cro_mode');
if (parts.length === 2) {console.log(parts.pop().split(';').shift())}
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter