Posts by gvsrepins • 239 points
3 posts
-
3
votes1
answer265
viewsA: Filter JSON from Facebook Graph Api Feed
With /{page-id}/posts show only posts that have been posted by the page. For more details see the documentation of this item here.…
-
2
votes2
answers7182
viewsA: How to send an Array via POST to a PHP controller
I would pass the data as object itself, and recover them in PHP with the function json_decode() transforming them into a php array.
-
5
votes2
answers386
viewsA: Rotation check in javascript
Try this: var el = document.getElementById("complex-transform"); var st = window.getComputedStyle(el, null); var tr = st.getPropertyValue("-webkit-transform") ||…