Hello!
I have a script provided to me which is to integrate a platform with a website. I want to format the script to put it into a table as the headers aren't lining up with the content that is pulled through from the platform.
The code is below:
Any help on how I can put this into a table, format it a bit more and make it look a bit nicer would be much appreciated!
Thanks,
Jack
I have a script provided to me which is to integrate a platform with a website. I want to format the script to put it into a table as the headers aren't lining up with the content that is pulled through from the platform.
The code is below:
Code:
<script src="https://training.XXXXX.com/XXXXX/NetLibrary/ClientScripts/webintegration.js"></script><script type="text/javascript">
var options = {
ContainerID: 'response',
CompanyID: "TXXXXX",
Columns: [CourseManager.columns.Alias, CourseManager.columns.StartDate, CourseManager.columns.StartTime, CourseManager.columns.Venue, CourseManager.columns.Cost, CourseManager.columns.Book]
}
CourseManager.coursesTable(options);
</script><div id="response">Please wait, loading course dates...</div>
Any help on how I can put this into a table, format it a bit more and make it look a bit nicer would be much appreciated!
Thanks,
Jack