Column wrapping

Could someone help with the JQuery I need to use to set the width of a specific column on a specific page in a specific table? I know how to inspect the page to find the table column. Note that it has to be page specific.

Thanks in advance!!!

You can use CSS to do this, we have sample code in our Knack Dev Docs:

 

/* Change the view_1 to the key of your table view */

/* Change the field_1 to the key of the field of the column you want to set */

#view_1 th.field_1 {

width: 100px; /* width in pixels */

}