|
|
||
|---|---|---|
| .. | ||
| composer-bot-extensions | ||
| public | ||
| src | ||
| .gitignore | ||
| README.md | ||
| components.json | ||
| eslint.config.js | ||
| index.html | ||
| package-lock.json | ||
| package.json | ||
| tsconfig.app.json | ||
| tsconfig.json | ||
| tsconfig.node.json | ||
| vite.config.ts | ||
README.md
function rightClickElementById(id) { const element = document.getElementById(id); if (!element) { console.error("Element not found:", id); return; }
const event = new MouseEvent("contextmenu", { bubbles: true, cancelable: true, view: window, button: 2, // Chuột phải buttons: 2, clientX: element.getBoundingClientRect().left, clientY: element.getBoundingClientRect().top });
element.dispatchEvent(event); }