that.log("got categories: " + data);
var text = [];
- text.push("<p><b>Categories for " + realm + "</b></p>");
- text.push("<ul>");
+ text.push("Select category: ");
+ text.push("<select name='mkwsCategory' onchange='alert(1)'>");
$(data).find('category').each(function() {
var name = $(this).find('categoryName').text();
var id = $(this).find('categoryId').text();
- text.push("<li>");
- text.push('<a href="#" onclick="mkws.setCategory(' + "'" + id + "'" + ')">' + name + '</a>');
- text.push("</li>");
+ text.push("<option value='", id, "'>", name, "</option>");
});
- text.push("</ul>");
+ text.push("</select>");
$(that.node).html(text.join(''));
});
});