Skip to content

Instantly share code, notes, and snippets.

professionsTable.addEventListener('click', function(e)
{
if (e.row.path)
{
var win = Ti.UI.createWindow({
url: e.row.path,
title: e.row.title
});
var profession = e.row.title;
private static void printHTML(Node target)
{
if(target.hasBache())
{
ArrayList<Node> temp = target.getKids();
for(int i = 0; i < temp.size(); i++)
{
Node child = temp.get(i);
if(child.isTag())
{