norfolkjs / norfolkjs.github.io

Website code for Norfolk.js
http://www.norfolkjs.org
12 stars 19 forks source link

June Meetup Entry On the Blog #44

Closed qwo closed 10 years ago

bmf commented 10 years ago

Also need entry for AMA with Raquel Vélez.

qwo commented 10 years ago

separate issue :)?

bmf commented 10 years ago

If you insist.

lynnaloo commented 10 years ago

Won't need new blog entries about the events if you setup the meetup API @stanzheng :)

qwo commented 10 years ago

Boo, Im working on it right now and im trying to use client side js instead of using their node util.

46 I'm having a cruddy time using meetups http api but it might be me. Getting cors errors, then not able to parse it.

any ideas

https://github.com/stanzheng/norfolkjs.github.io/blob/meetup/javascripts/meetup.js

46 (this should run in any browser copy paste that has jquery loaded)

fiddle? Something like this http://jsfiddle.net/k6cAE/

lynnaloo commented 10 years ago

We could pair on it tomorrow if you have time? I'm not seeing good examples online anywhere except in Ruby :)

tjwebb commented 10 years ago

@stanzheng The fiddle is still making an XHR request instead of a JSONP request, which obviously won't work. I'll look at it.

tjwebb commented 10 years ago

@stanzheng Your URL is invalid:

?callback=getJSON

should be

&callback=getJSON
tjwebb commented 10 years ago

Working: http://jsfiddle.net/k6cAE/2/.