Tag Archives: javascript

Creating FaceBook Application Part 1

I’ve been interested in creating a Facebook Application for a while, but I have also been wondering what is there that would be useful to publish as an application?
Flickr API
Google Maps API &
Google Maps API documentation
And finally Facebook developer documentation
FBML
I’m really thinking about 3 features:

Page visit counter (Friend, Anonymous Friend, Anonymous facebook user, World)
Where in […]

How to set max height using javascript

function update() {
var height = 0;
if (sIe()){
height = document.documentElement.clientHeight;
} else {
height = window.innerHeight;
}
div.style.height = (height-20) + “px”;
}

I’ve been trying to snatch this code from somewhere… so I was […]