What's new
HTML Forums | An HTML and CSS Coding Community

Welcome to HTMLForums; home of web development discussion! Please sign in or register your free account to get involved. Once registered you will be able to connect with other members, send and receive private messages, reply to topics and create your very own. Our registration process is hassle-free and takes no time at all!

Script formatting

jack_1992

New member
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:

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
 
Back
Top