2012-03-03から1日間の記事一覧

trigger mouse click event via jQuery

http://stackoverflow.com/questions/773639/how-can-i-simulate-an-anchor-click-via-jquery <script type="text/javascript"> var a = $('.path > .to > .element > a')[0]; var e = document.createEvent('MouseEvents'); e.initEvent( 'click', true, true ); a.dispatchEvent(e); </script>

reblogMachieOpenDoor.user.js

reblog machine で "o" キーで tumblelog を、"r"キーで reblog ページを開くようにした。

reblog machine keybind

http://reblog.machine.mamemomonga.com/js/ReblogMachine.js $(window).keypress(function (b) { if (!b.ctrlKey && (b.which == 32 || 65 <= b.which && b.which <= 90 || 97 <= b.which && b.which <= 122)) { var b = String.fromCharCode(b.which), d; …