I'm working on an extension attribute script, that utilises API, which uses the assigned user and the MacBook serial number, to populate information of assigned devices managed and total based on the assigned user.
it took a while, but I am near complete, the problem I appear to be having now is generating a clickable link
The below will generate all the HTML code but it will just appear as text instead of insert into the web page to be clicked
echo "<result><p><a href=\\"$jamfProURL/mobileDevices.html?id=${managedidmobiledevicearraydata}\\">$managedidmobiledevicename</a></p></result>"
and this will just list a URL as text
echo "<result>$jamfProURL/mobileDevices.html?id=${managedidmobiledevicearraydata}</result>"
does any one know how this could be achieved so it would list the URL as a clickable URL? I suspect it would likely be a limitation of how the java script is treating anything between <result></result> as only text?