Today I started to discover the HTML Code of Google+

When I inspected the Buttons like "start Hangout", I can't see the function where the javascript code is called. Look here:

<div role="button" class="d-s-r tk3N6e-e tk3N6e-e-qc a-b-kh-fs a-kh-fs-e" tabindex="0" style="-webkit-user-select: none; ">Start a hangout</div>

there is no onclick() function.

Any ideas how it works? Perhaps a Observer for the Button state? is this possible?

link|improve this question

53% accept rate
2  
maybe class selector ? – Mihai Iorga Jul 18 '11 at 19:28
feedback

2 Answers

up vote 7 down vote accepted

They are probably binding the function in an external js file to the id or class selector.

I don't believe they use jQuery (but they very well may), but this is how you would do it in an external js in jquery:

$("#id").click(function() {
  //run onclick code
});
link|improve this answer
1  
It's worth pointing out that this is also arguably the "right" way to make HTML elements respond to user events. I wouldn't hire a front end developer that uses "<div onclick='foo()'>` in their code test :( – Alex Wayne Jul 18 '11 at 19:34
2  
Learning never stops. Thanks! – passsy Jul 18 '11 at 20:05
feedback

Most likely the functional aspect of the code is being defined in a separate javascript file. For examples of this, you can check out the .bind() function of jQuery.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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