We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Some hints about Javascript and JQuery:
If you want to print something to the console, you can use console.debug('my message'), or, hotot specific, hotot_log('my label','my content').
console.debug('my message')
hotot_log('my label','my content')
You can output the contents of a JSON-object as follows:
hotot_log('some label', JSON.stringify(some_object));
Or the HTML in e.g. the main page using JQuery:
hotot_log('some label', $("#main_page").html())
Another example, showing the html output for tweets[i]:
hotot_log('ExpandUrls', $("li[tweet_id='"+tweets[i].id_str+"']").html());
There was an error while loading. Please reload this page.