I was able to get it working using:
"columnDefs": [ { "render": function ( data, type, row, meta ) { if ( 'display' === type ) { data = "<a href=\"" + data + "\">Click here</a>"; } return data; }, "targets": [ 5 ] } ]
and I did know it needed to be https:// I changed the first one to just www as a control subject when I was trying to figure out why it wasn’t working.
Thanks for the help!
-
This reply was modified 5 years, 8 months ago by bapreiss.