Как щелкнуть по автомату c Воспроизвести после загрузки iframe на странице
Я хочу щелкнуть по воспроизведению Automati c после загрузки страницы в iframe
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled 1</title>
</head>
<body >
<iframe id="radio" width="100%" height="170px" frameborder="0" seamless src="//www.caster.fm/widgets/em_player.php?uid=513923&c=&t=purple"><p>Your browser does not support iframes.</p></iframe>
<script>
$('#radio').contents().find('playbtn').click(function(){
alert("works")
});
</script>
</body>
</html>