css - how i can filter out the likes from a Facebook like button, html -


i have created fb button page on fb developer page. part of page want modify looks atm

enter image description here

so problem want filter out likes (the 188). , make 188 little paragraph

this sites likes 188

here little example how should look.

enter image description here

thank guys in advance

you can likes ajax call url

http://graph.facebook.com/https://www.facebook.com/cyprusjetset

$.ajax({             type: "post",             contenttype: "application/json; charset=utf-8",             url: "http://graph.facebook.com/https://www.facebook.com/cyprusjetset",             datatype: "json",             success: function (data) {                 alert(data.likes);             },             error: function (result) {                 alert("sorry no data found.");             }         }); 

see link http://jsfiddle.net/yftvu/6/


Comments

Popular posts from this blog

monitor web browser programmatically in Android? -

Shrink a YouTube video to responsive width -

wpf - PdfWriter.GetInstance throws System.NullReferenceException -