Get Form name from Forms 2.0 API?
Is it possible to get the form name (the name that is in Marketo) by using the form ID and the Forms 2.0 API? For example:
MktoForms2.loadForm("//app-sj14.marketo.com", "xxx-xxx-xxx", 2146, function(form){
var name;
name = form.name;
return name;
});
Any thoughts would be appreciated?