(function () { const mulaDiv = document.querySelector('#tabs-2 .tab-content-section'); if (!mulaDiv) { console.error('Target div nahi mila'); return; } const children = Array.from(mulaDiv.children); if (children.length <= 1) { console.warn('⚠️ First child ke alawa koi child nahi hai'); return; } let html = children .slice(1) .map(child => child.outerHTML) .join('\n'); html = html.replace( /
]*>/gi, '
' ); navigator.clipboard.writeText(html).then(() => { console.log(' FORCE-CLEAN HTML copied (NO style possible)'); }).catch(err => { console.error(' Clipboard error:', err); }); console.log(html); })();