16,456 reputation
3825
bio website
location
age
visits member for 11 months
seen 14 mins ago
stats profile views 1,626
class Karma extends Bitch {
  // …
}

2d
comment Troubleshooting a missing image
You should go fix your crappy HTML code first: validator.w3.org/check?uri=http://shoemarketnyc.com/shop/…
2d
comment Why css works in JSFiddle but not in my App/Site
Well, you’re giving us not much to go on, although thanks for the update you added to your question. So, next shot in the dark: Have you validated your print css file? No syntactically incorrect selectors that might make browsers skip a complete rule, no missing curly brackets, …?
2d
comment The iframe “src” attribute issue
Not sure from your question if this is a question concerning the Same Origin Policy – but easiest thing to do would probably be to just replace the existing iframe element with a new one, jsfiddle.net/CBroe/Am26r
2d
comment Why does PHP rand() is throwing 2 different values in chrome
When you use “view source” Chrome actually requests the page from the server again. Use developer tools instead to find the current value of your input field if you need to check it.
2d
comment Updating list items using PHP and AJAX
You are missing an equal sign = after your GET parameter listname in the URL you are creating.
2d
comment Need help in the Regex issue: TypeError: cannot read property “1” from null
That’s a different problem then – so please describe it in a way that makes it comprehensible.
2d
comment Need help in the Regex issue: TypeError: cannot read property “1” from null
Why would you need to do regex voodoo to display unicode characters …?
2d
answered Why css works in JSFiddle but not in my App/Site
2d
comment Javascript - Plugin for simulating HTML5 local storage
I think you might be confusing HTML5 Local Storage with the HTML5 File API – I can’t see the former having anything to do with this.
2d
comment Open Graph has og:type of 'website'
According to FB’s debug tool the meta information you have shown is not contained in the HTML code the URL delivers: developers.facebook.com/tools/debug/og/…
2d
answered Retrieve apprequest giving the user_id
2d
comment Crawling Facebook for public Profiles & Fan Pages?
“But in my case I dont want to crawl a single page or category of pages but whole Facebook.” – you are not seriously thinking that your platform can handle that massive amount of data …?
2d
comment fetch friends of users from facebook faster
developers.facebook.com/tools/…
2d
answered Does the Facebook API allow for automated changes to old post visibility?
2d
comment How can I attach a MixPanel event to when the user clicks a Facebook Like button?
developers.facebook.com/docs/reference/javascript/…
2d
comment Does the Facebook API allow for automated changes to old post visibility?
There is no functionality to edit user posts via API at all – not for content, not for privacy settings.
2d
comment PHP radiobutton testing
Use print_r or var_dump whenever you are not sure how exactly data you are receiving is structured. So output the contents of $_GET in your case, and see what values you are actually getting. Basically: Do debugging instead of guessing.
2d
comment Check fan page like to access application in Facebook
Well get a valid access token then …
2d
comment Javascript help in JSP
TD elements don’t have a name attribute. Use an HTML5 custom data attribute instead. And learn to write/create correct HTML code – attribute values should be encapsulated in " or ', especially if the contain anything else than just common letters/numbers.
May
16
comment Facebook Auth Dialog: Developer warning concerning the use of “display” type “popup”
“popup itself has a size of 400px by 580px” – your screenshot suggests otherwise, it’s 446x630 pixels in size …