Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

At familyecho website, when you click me box, there must be a click trigger, i try to find the function, but i didn't find it anywhere,can somebody tell me where it is,and it will be better to tell me how to find it out. http://www.familyecho.com/

share|improve this question
Give us a link. – Bergi Aug 3 '12 at 5:25
familyecho.com – user1551959 Aug 3 '12 at 5:32

1 Answer

up vote 1 down vote accepted

You need the "tree.js" file. Find the TCT function and roll over it through the functions ESP, EHW and SS, which hides the popup bar above using the GE function.

share|improve this answer
it seems right,can you tell me how you find this.in fact,i still don't understand why trigger that function – user1551959 Aug 3 '12 at 5:46
You need to: 1. Find the event listeners, that listen to events you need. You were talking about click, so those are: click, mousedown. 2. Find all the functions that are attached to these events. 3. Put some breakpoints. 4. Click. 5. F11 if you are working from chrome. – Vladislav Qulin Aug 3 '12 at 5:58
thanks a lot, sometimes i do that and it show the js of chrome extention, f11 and at the end it will not show the website's js. – user1551959 Aug 3 '12 at 6:19
for example ,when i start to listen the event, and i click the cross to close the tip window when first loaded, it will show the chrome extention js. i don't know the reason, and it showed not just once i debugged js in the past – user1551959 Aug 3 '12 at 6:33
You need to learn to work with chrome js debugger. Google it around. – Vladislav Qulin Aug 3 '12 at 6:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.