I want to develop an application that parse custom xml tags inside my
webpage. Something like xfbml  .

example:

<fb:login-button></fb:login-button>

<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js";></script>
<script>
  FB.init({appId: 'your app id', status: true, cookie: true, xfbml:
true});
  FB.Event.subscribe('auth.sessionChange', function(response) {
    if (response.session) {
      // A user has logged in, and a new cookie has been saved
    } else {
      // The user has logged out, and the cookie has been cleared
    }
  });
</script>

see http://developers.facebook.com/docs/guides/web


Anyone knows where to start?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to