Skip to content

Report a question
✅ Your Unlocked Premium Categories
আপনি যে premium categories কিনেছেন, সেগুলো নিচে দেখানো হলো। Category-তে click করলে সরাসরি quiz list/open হবে।
🔒 Premium Access
Premium quiz কিনতে হলে আগে registration / login করতে হবে।
আগে register/login করুন, তারপর premium quiz কিনতে পারবেন।
Register করুন
আগে register/login করুন।
![User photo]()
এই mobile number আগে ব্যবহার হয়েছে
নিচের user profile-এ এই mobile number দিয়ে আগে premium category/order করা হয়েছে। দয়া করে অন্য mobile number দিন।
Security reason-এর জন্য পুরো email দেখানো হচ্ছে না।
📚
Subjects
0
Answered
0
Not
Answered
0
Not
Visited
0
Marked
for Review
0
Answered & Marked for Review
(will also be evaluated)
Quiz Panel
Choose a Question
';printWindow.document.open();
printWindow.document.write(documentHtml);
printWindow.document.close();
printWindow.focus();
window.setTimeout(function(){
printWindow.print();
}, 300);
}function downloadInvoice(data){
const documentHtml = '
' +
esc(data.invoice_no || 'Invoice') +
'' +
invoiceHtml(data) +
'';const blob = new Blob([documentHtml], {type:'text/html;charset=utf-8'});
const url = URL.createObjectURL(blob);
const link = document.createElement('a');
link.href = url;
link.download = (data.invoice_no || 'quizgk-invoice') + '.html';
document.body.appendChild(link);
link.click();
link.remove();window.setTimeout(function(){
URL.revokeObjectURL(url);
}, 1000);
}document.addEventListener('click', function(event){
let button = event.target.closest('.qgk-view-invoice');
if (button) {
event.preventDefault();
event.stopPropagation();
openInvoice(readData(button));
return;
}button = event.target.closest('.qgk-print-invoice');
if (button) {
event.preventDefault();
event.stopPropagation();
printInvoice(readData(button));
return;
}button = event.target.closest('.qgk-download-invoice');
if (button) {
event.preventDefault();
event.stopPropagation();
downloadInvoice(readData(button));
}
});const closeButton = modal.querySelector('.qgk-invoice-close');
if (closeButton) {
closeButton.addEventListener('click', function(){
modal.style.setProperty('display','none','important');
document.documentElement.style.overflow = '';
});
}modal.addEventListener('click', function(event){
if (event.target === modal) {
modal.style.setProperty('display','none','important');
document.documentElement.style.overflow = '';
}
});const printButton = document.getElementById('qgkInvoicePrintBtn');
if (printButton) {
printButton.addEventListener('click', function(){
if (currentInvoice) printInvoice(currentInvoice);
});
}const downloadButton = document.getElementById('qgkInvoiceDownloadBtn');
if (downloadButton) {
downloadButton.addEventListener('click', function(){
if (currentInvoice) downloadInvoice(currentInvoice);
});
}
}if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', qgkInvoiceInit);
} else {
qgkInvoiceInit();
}
})();