Message from JavaScript discussions
October 2017
— <div><div><div><div><div><div><div>
I'd write my own css but then I need to spend days debugging stuff and making it work x-browser and scaling etc.
— But I'd css grid the shit out of everything and it would be glorious
— There is vanilla css
— Wat
— Is this allowed?
— No spam
— Randomly posting links is pretty much spam
— Halp, i want to show my json data from my api to javascript datatables
this is how the json looks like https://gist.github.com/DimasInchidi/146adb10dc5545d3fafac154626ea38c
— And atm my js looks like this
$(document).ready(function () {
$('#table_channel').DataTable({
"ajax": "http://localhost:8401/administrator/channel/",
"columns": [
{"data": "channel_code"},
{"data": "channel_name"},
{"data": "channel_phone"},
{"data": "channel_email"}
]
});
});
— Its throwing error from i is undefined, l undefined, j undefined. and now am stuck at TypeError: f is undefined
— No idea what those error means 😢