आप मूल जावास्क्रिप्ट elementFromPoint(x, y)
विधि का उपयोग कर सकते हैं , जो व्यूपोर्ट में x, y के निर्देश पर तत्व को लौटाता है।
देखें एलिमेंटफ्रॉमप्वाइंट डब्ल्यू 3 सी ड्राफ्ट
और, एक कोड नमूना:
function changeColor(newColor) {
// Get the element placed at coords (2, 2)
var elem = document.elementFromPoint(2, 2);
// Set the foreground color to the element
elem.style.color = newColor;
}
<p id="para1">Change this text color using the following buttons.</p>
<button onclick="changeColor('blue');">Blue</button>
<button onclick="changeColor('red');">Red</button>
आप setInterval()
तत्व के होवर ईवेंट को लगातार जांचने के लिए उपयोग कर सकते हैं, लेकिन यह अनुशंसित नहीं है, .hover(...)
एप्लिकेशन प्रदर्शन को बढ़ाने के बजाय उपयोग करने और सीएसएस करने का प्रयास करें ।