Hi guys,
I am sort of confused. I need information from a field that is in CRM. The field has a url. It gets populated when a workflow runs in CRM and is unique to each record.. I have so far used the following in web form:
var location = ("#fieldname").val();
$("#downloadbutton").click(function(){
location.href = location;
});
but it comes back with page not found.
I am not sure what is going on or where I am going wrong.