How to download and license ESXi 8?

93 Technical Leave a Comment
It is not easy to download ESXi 8 from Vmware official website. You must have visited Wmware's official website, but they only put a link to broadcom, and then they kept jumping around, and in the end you still couldn't find the correct download link. In this article, we will explain step by step how to downloa…

Get clicked word using pure Javascript

38 Technical Leave a Comment
On browser, if we want to get the clicking word we can use following Javascript: var captureWordOnClick = function(containerEl, callback) { containerEl.addEventListener('click', function (event) { // Get the mouse position relative to the clicked element const x = event.clientX; const y = event.client…