function get_post() { check = document.getElementById('strike'); if(check.value === 'normal') { document.cookie = 'del_strike=0;'; } else if(check.value === 'change') { document.cookie = 'del_strike=1;'; } else { document.cookie = 'del_strike=2;'; } console.log(document.cookie); check = document.getElementById('include'); if(check.checked === true) { document.cookie = 'include_link=true;'; } else { document.cookie = 'include_link=false;'; } history.go(0); } function regex_data(data) { r_data = new RegExp('(?:^|; )' + data + '=([^;]*)') return r_data; } cookies = document.cookie; function main_load() { head_data = document.querySelector('head'); if(cookies.match(regex_data('del_strike'))) { if(cookies.match(regex_data('del_strike'))[1] === '1') { head_data.innerHTML += ''; } else if(cookies.match(regex_data('del_strike'))[1] === '2') { head_data.innerHTML += ''; } } if( cookies.match(regex_data('include_link')) && cookies.match(regex_data('include_link'))[1] === 'true' ) { head_data.innerHTML += ''; } } main_load(); window.onload = function () { if(window.location.pathname === '/skin_set') { document.getElementById("main_top").innerHTML = '