I want to add onclick event on embed tag but the problem is,it is not working on chrome and the handler is not working.Other than onclick event mouseover and mouseleave are working.here is the code HTML
<embed src="http://localhost/credit-app1/" onclick="increaseSize()" onload="bottomRight()">
JAVASCRIPT
function increaseSize(){
var embedtag = document.querySelector("embed");
if(embedtag.style.width == "400px"){
embedtag.style.width = "100px";
embedtag.style.height = "100px";
}else{
embedtag.style.width = "400px";
embedtag.style.height = "500px";
}
console.log(embedtag)
}