开发者

How to see what javascript events are binded to a HTML element?

开发者 https://www.devze.com 2023-03-15 00:08 出处:网络
I\'m trying to see how this page handle开发者_运维百科 its click events for the left side menu.

I'm trying to see how this page handle开发者_运维百科 its click events for the left side menu. http://sg.jobsdb.com/SG/jobs/accounting/1?JSSRC=HPJC

Using Firebug, I could see the click object but couldn't make any sense of how it displays the content on the right side.

Are there any ways I could see the source code the binds the event to the element without searching through all the scripts?

Thanks.


The chrome debugger has got what you're looking for

isAttribute: false
lineNumber: 348
listenerBody: "function (){return typeof jQuery!=="undefined"&&!jQuery.event.triggered?jQuery.event.handle.apply(arguments.callee.elem,arguments):undefined;}"
node: HTMLTableCellElement
sourceName: "http://content.jobsdb.com.sg/Content/v50/Javascript/JobsDB.combined.min.js"
type: "click"
useCapture: false

I used to be all about firebug but the chrome debugger has definitely caught up in my opinion, and with the new improvements coming down the pipe I don't think I'm going back to firebug anytime soon.

0

精彩评论

暂无评论...
验证码 换一张
取 消