Sha256: b4f7f6bf68fecffbe1653b925f4dff68484699cadc359577b5a1ab5ea399554b
Contents?: true
Size: 604 Bytes
Versions: 1
Compression:
Stored size: 604 Bytes
Contents
<html> <head> <script src="javascript/jquery-1.7.1.min.js" type="text/javascript" charset="utf-8"></script> </head> <script> $(document).ready(function() { $("#click-logger").click(function(evt) { $("#log").append("<p>shift=" + evt.shiftKey + " alt=" + evt.altKey + "</p>"); }); }); </script> <body> <div id="click-logger">click me</div> <div id="log"></div> <div> <div onclick="this.innerHTML = 'You Clicked It!'" style="color: red; text-decoration: underline; cursor: pointer;">Can You Click This?</div> </div> </body> </html>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
watir-6.10.1 | spec/watirspec/html/clicks.html |