I have tried this code and it keeps returning undefined:
setTimeout("alert($('div.connect_widget_button_count_count').val());", 10000);
I wait 10 seconds to allow for the bloated facebook button and counter to load.
I then issue an alert with the value of the div with class='connect_widget_button_count_count' which usually looks like this when loaded to the web page:
<div class='connect_widget_button_count_count'>4</div>
With 4 being the official facebook "count" number.
How can I capture the Facebook like/share/count number as a javascript variable from the official Facebook button?
According to firebug, this is what the surrounding HTML looks like:
<table class="connect_widget_interactive_area">
<tbody>
<tr>
<td class="connect_widget_button_count_excluding">
<table class="uiGrid" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td>
<div class="connect_widget_button_count_count">2</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>