And something called 'textContent' is more standard?
New stuff to learn every day. Good thing I decided to try Firefox for a while; it's been months.
Just wrap everything in jQuery, I guess.
Software development woes. Java-based development in particular. Also, philosophizing, architecture, design.
var ajax_params = {
type: 'POST',
url: dst_url,
contentType: 'application/json',
dataType: 'json',
data: dto_obj,
error: function(jqXHR, textStatus, errorThrown) {
console.debug("Error...");
},
success: function (data, textStatus, jqXHR) {
}
};
$.ajax(ajax_params);