Got it.
The Content Type is displayed in a select, not an input element. Try this:
You should get good at looking into the DOM with a DOM inspector like Firebug.
M.
The Content Type is displayed in a select, not an input element. Try this:
var strContentType = $("select[title$='Content Type']").val(); alert("Content Type: " + strContentType);
M.