Files
monkeygg2.github.io/games/gons-io/Blobium/cursorChanger.js
T
2023-08-25 13:31:04 +05:30

18 lines
272 B
JavaScript

function changeCursor(cursorType)
{
var curs = "default";
if(cursorType==1)
curs = "pointer";
else if(cursorType==2)
curs = "text";
document.getElementById('#canvas').style.cursor = curs;
}
function openURL(urlString)
{
window.open(urlString, '_self');
}