16,466 reputation
3825
bio website
location
age
visits member for 11 months
seen 5 hours ago
stats profile views 1,632
class Karma extends Bitch {
  // …
}

May
17
comment Troubleshooting a missing image
You should go fix your crappy HTML code first: validator.w3.org/check?uri=http://shoemarketnyc.com/shop/…
May
17
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, …?
May
16
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
May
16
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.
May
16
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.
May
16
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.
May
16
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 …?
May
16
answered Why css works in JSFiddle but not in my App/Site
May
16
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.
May
16
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/…
May
16
answered Retrieve apprequest giving the user_id
May
16
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 …?
May
16
comment fetch friends of users from facebook faster
developers.facebook.com/tools/…
May
16
answered Does the Facebook API allow for automated changes to old post visibility?
May
16
comment How can I attach a MixPanel event to when the user clicks a Facebook Like button?
developers.facebook.com/docs/reference/javascript/…
May
16
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.
May
16
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.
May
16
comment Check fan page like to access application in Facebook
Well get a valid access token then …
May
16
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 …