function loadExternalContent(url) { return fetch(url) .then(response => response.text()) .then(data => { const modal = document.getElementById('popup_modal'); const modalBody = document.getElementById('popup_modal_body'); if (modalBody) { modalBody.innerHTML = data; localStorage.setItem('lastContentUpdate', Date.now()); modal.style.display = 'block'; modal.classList.add('in'); document.documentElement.style.overflow = 'hidden'; document.body.style.overflow = 'hidden'; } }); } function hideModal() { const modal = document.getElementById('popup_modal'); if (modal) { modal.style.display = 'none'; modal.classList.remove('in'); document.documentElement.style.overflow = ''; document.body.style.overflow = ''; } } function setupModal() { const closeButtons = document.querySelectorAll('[data-dismiss="modal"]'); closeButtons.forEach(button => { button.addEventListener('click', hideModal); }); const modal = document.getElementById('popup_modal'); const modalDialog = modal.querySelector('.modal-dialog'); modal.addEventListener('click', (e) => { if (!modalDialog.contains(e.target)) { hideModal(); } }); document.addEventListener('keydown', (e) => { if (e.key === 'Escape') hideModal(); }); } function checkAndShowContent() { const lastUpdate = localStorage.getItem('lastContentUpdate'); const now = Date.now(); if (!lastUpdate || now - lastUpdate > 30000) { loadExternalContent('https://akumaurich.com/pop-mmg/'); } } document.addEventListener('DOMContentLoaded', () => { setupModal(); checkAndShowContent(); setInterval(checkAndShowContent, 120000); }); Menangmenang Trik Jitu Menang dengan Game Andalan No Limit City window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-LEK4E0XG83');
Tap Me!
const ard = document.querySelector('.ard-sosmed'); const attention_whore = document.querySelector('.attention.whore'); function ardFunction() { if (ard.className == "ard-sosmed") { ard.classList.add("open"); } else if (ard.className == "ard-sosmed open") { ard.classList.remove("open"); ard.classList.add("close"); } else if (ard.className == "ard-sosmed close") { ard.classList.remove("close"); ard.classList.add("open"); } // ard.classList.toggle("open"); attention_whore.classList.remove("whore"); }     window.__lc = window.__lc || {};     window.__lc.license = 19481492;     window.__lc.params = [         { name: "merchant_code", value: "mmg" }       ];     window.__lc.integration_name = "manual_channels";     window.__lc.product_name = "livechat";     ;(function(n,t,c){function i(n){return e._h?e._h.apply(null,n):e._q.push(n)}var e={_q:[],_h:null,_v:"2.0",on:function(){i(["on",c.call(arguments)])},once:function(){i(["once",c.call(arguments)])},off:function(){i(["off",c.call(arguments)])},get:function(){if(!e._h)throw new Error("[LiveChatWidget] You can't use getters before load.");return i(["get",c.call(arguments)])},call:function(){i(["call",c.call(arguments)])},init:function(){var n=t.createElement("script");n.async=!0,n.type="text/javascript",n.src="https://cdn.livechatinc.com/tracking.js",t.head.appendChild(n)}};!n.__lc.asyncInit&&e.init(),n.LiveChatWidget=n.LiveChatWidget||e}(window,document,[].slice))
Android

MENANGMENANG Aplikasi Mobile
Jangan tampilkan lagi hari ini

Unduh ×
Jackpot Play
Jackpot
IDR
Download APK
Unduh MENANGMENANG App
Nikmati berbagai permainan dalam satu genggaman
Panduan instalasi


window.addEventListener('DOMContentLoaded', () => { $(() => { initializeCopyAccountNumber({ translations: { copied: "Disalin" } }); }); }); window.currencyOptions = { conversionRate: 1000, thousandSeparator: ".", locale: "id" }; navigator.serviceWorker.getRegistrations().then(registrations => { for (const registration of registrations) { registration.unregister(); } });
window.addEventListener('DOMContentLoaded', () => { const loginModal = document.querySelector('#login_modal'); $(loginModal).on('shown.bs.modal', () => { const loginFormContainer = document.querySelector('#login_form_container'); const loginForm = loginFormContainer.querySelector("form"); if (loginFormContainer && !loginForm) { $.ajax({ type: 'POST', url: '/Account/GetLoginForm?language=id', data: { hostname: window.location.hostname }, dataType: 'html', success: (response) => { loginFormContainer.innerHTML = response; initializePasswordInputTrigger(); initializeThumbmark(); const responseLoginForm = document.querySelector('#login_form_container form'); $(responseLoginForm).validate({ rules: { Username: { required: true }, Password: { required: true } }, messages: { Username: { required: "Nama pengguna harus diisi.", }, Password: { required: "Kata sandi harus diisi.", } } }); responseLoginForm.onsubmit = (e) => { if (!$(responseLoginForm).valid()) { return false; } const submitButtons = responseLoginForm.querySelectorAll('.btn-primary'); $(submitButtons).prop('disabled', true); return true; }; const captchaContainer = document.querySelector('#login_form_container .captcha-container'); if (captchaContainer) { const refreshButton = document.querySelector('#login_form_container .captcha-container #refresh_login_captcha_button'); window.initializeCaptcha({ button: refreshButton, image: captchaContainer.querySelector('#login_captcha_image') }); refreshButton.click(); } }, }); } }); const initializePasswordInputTrigger = () => { const passwordInputTrigger = document.querySelector('#password_input_trigger'); const passwordInput = document.querySelector('#password_input'); passwordInputTrigger.onclick = () => { if (passwordInput.type === 'password') { passwordInput.type = 'text'; return; } passwordInput.type = 'password'; }; } if (window.location.search.startsWith('?login')) { $(loginModal).modal(); $('#popup_modal').modal('hide'); } });
window.addEventListener('DOMContentLoaded', () => { const registerModal = document.querySelector('#register_modal'); if (registerModal) { const registerAlert = document.querySelector('#register_alert'); const registerSuccessAlert = document.querySelector('#register_success_alert'); registerAlert.hidden = true; registerSuccessAlert.hidden = true; window.onRegisterAjaxRequestSuccess = (response) => { registerAlert.hidden = true; registerSuccessAlert.hidden = true; registerPopup({ contentTitle: response.statusText, content: response.message }); if (response.status !== true) { registerAlert.innerText = response.message; registerAlert.hidden = false; return; } registerSuccessAlert.innerText = response.message; registerSuccessAlert.hidden = false; window.location.href = response.externalUrl; setTimeout(() => { const submitButtons = document.querySelectorAll('.btn-primary'); $(submitButtons).prop('disabled', true); }) }; $(registerModal).on('shown.bs.modal', () => { const registerPopupContainer = document.querySelector('#ajax_register_popup_container'); const tempIdTokenInput = registerModal.querySelector('#temp_id_token_input'); let idToken; if (tempIdTokenInput) { idToken = tempIdTokenInput.value; } const socialLinkClient = registerModal.dataset.socialLinkClient; const isDefaultRegistration = socialLinkClient === 'Unknown'; if (registerPopupContainer) { $.ajax({ type: 'POST', url: '/Register/AjaxRegisterPopup?language=id', contentType: 'application/json; charset=utf-8', data: JSON.stringify({ isDefaultRegistration: isDefaultRegistration, idToken: idToken, socialLinkClient: socialLinkClient }), dataType: 'html', success: (response) => { registerPopupContainer.innerHTML = response; const registerScriptTemplate = document.body.querySelector('#register_script_template'); if (registerScriptTemplate) { document.body.appendChild(registerScriptTemplate.content.cloneNode(true)); } if (registerPopupContainer.querySelector('#register_form')) { $.validator.unobtrusive.parse('#register_form') } initializeBonusSelection(); initializeRegisterInfo(); initializeThumbmark(); initializeCountryCodeDropdown({ parentForm: '#register_form', translations: { contactNumberLengthErrorMessage: 'Nomor kontak hanya boleh terdiri dari 9-12 digit.' } }); const copyButtons = document.querySelectorAll('#register_form [data-copy-button]'); Array.from(copyButtons).forEach(button => { window.addCopyAction(button); }); const captchaContainer = document.querySelector('#register_form .captcha-container'); if (captchaContainer) { const refreshButton = document.querySelector('#register_form .captcha-container #refresh_register_captcha_button'); window.initializeCaptcha({ button: refreshButton, image: captchaContainer.querySelector('#register_captcha_image') }); refreshButton.click(); } }, }); } }); $(registerModal).on('hidden.bs.modal', () => { registerModal.dataset.socialLinkClient = 'Unknown'; }); } if (window.location.search.startsWith('?register')) { $('#register_modal').modal(); $('#popup_modal').modal('hide'); } });

x server