I'm trying to write a jetpack that grabs a page, scrapes some data out
of it, and puts a message in the status bar. I'm just not seeing
something because I keep getting the error mentioned in this message's
subject.
I've tried both writing from scratch and starting with a working
example (e.g. Bandit's Gmail Checker) and paring it down and either
way I still get the same problem.
Here's a minimal example of what I'm screwing up....
jetpack.statusBar.append({ onReady: function(doc) {
$.get("
http://www.galaxyzoo.org/
zoonometer",
function (data) {
var elem = $(data).find
("#counter");
});
} });
Any suggestions are appreciated!
Matt