admin管理员组文章数量:1342908
How can I find out from firebug which method or methods are attached to the click event handler of a button?
This is the code of the button
<button class="rsmg_button_save ui-button ui-widget ui-state-default ui-corner-all ui-button-text-icon-primary ui-state-focus" type="button" role="button" aria-disabled="false" style="display: inline-block;"><span class="ui-button-icon-primary ui-icon ui-icon-disk"></span><span class="ui-button-text">Save</span></button>
How can I find out from firebug which method or methods are attached to the click event handler of a button?
This is the code of the button
<button class="rsmg_button_save ui-button ui-widget ui-state-default ui-corner-all ui-button-text-icon-primary ui-state-focus" type="button" role="button" aria-disabled="false" style="display: inline-block;"><span class="ui-button-icon-primary ui-icon ui-icon-disk"></span><span class="ui-button-text">Save</span></button>
Share
Improve this question
edited Apr 1, 2017 at 14:20
themhz
asked Jul 4, 2012 at 4:15
themhzthemhz
8,42422 gold badges85 silver badges109 bronze badges
8
-
Your question makes little sense. When a button is clicked, the browser generates the
click
event. What else do you want to know? A function can be installed to handle that event either with theonclick
property or by installing an event listener -addEventListener()
orattachEvent()
depending upon browser/browser version. – jfriend00 Commented Jul 4, 2012 at 4:18 - The code is above. When i press it, some javascript function is fired that saves data in the database with ajax. But there is no onclick attribute specified on the button – themhz Commented Jul 4, 2012 at 4:20
- Then it's in a seperate function somewhere. Most developers don't care much for inline javascript handlers like onclick. – adeneo Commented Jul 4, 2012 at 4:22
- sure, but how can you know what function is hooked to that onclick event without seeing the onclick? – themhz Commented Jul 4, 2012 at 4:22
-
2
If you you chrome you can use the inspector, in the elements tab on the right at the bottom you'll see
Event Listeners
– Musa Commented Jul 4, 2012 at 4:25
3 Answers
Reset to default 7If function is attached using jQuery, you can see it using firebug.
jQuery events are stored using data
method and with key as events
.
So $("desiredSelector").data("events")
will show up all events attached to that particular element.
For details check this link.
For event defined in Javascript you can check the onClick
property or use the method suggested by jfriend00.
EDIT :
There is a jQuery plugin which make this more simple.
Javascript code can hook up to button click events with either the onclick
property or with addEventListener()
or attachEvent()
(depending upon browser and browser version).
If there is javascript code handling the event and there is no onclick handler specified in the HTML, then the javascript code is installing the event handler either by setting the onclick
property later or by using addEventListener()
or attachEvent()
.
I searched hard with $("desiredSelector").data("events") from above and also with GetEventListeners but in Firebug 2.x there is a very easy new way to find the bound events: If there is a bind-function you will find an "ev" right next to the row:
Cool Thing!
本文标签: javascriptHow to find the method that is attached to a click event of a buttonStack Overflow
版权声明:本文标题:javascript - How to find the method that is attached to a click event of a button - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743616993a2510907.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论