আপনি স্থানীয় জাভাস্ক্রিপ্ট elementFromPoint(x, y)
পদ্ধতিটি ব্যবহার করতে পারেন , যা ভিউপোর্টে x, y স্থানাঙ্কে উপাদানটি প্রদান করে।
উপাদানটি থেকে দেখুনফ্রন্টপয়েন্ট w3c খসড়া
এবং, একটি কোড নমুনা:
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(...)
অ্যাপ্লিকেশনটির কার্যকারিতা বাড়ানোর পরিবর্তে ব্যবহার করার চেষ্টা করুন এবং CSS ব্যবহার করুন ।