November 2017
— Halp
How to pass data to my taskDetailShow function?
taskDetailShow
var box = $(document.createElement('div')).addClass('box box-solid'); ...box.on('click', taskDetailShow);
— I got it,
box.on('click', {the_data:the_data}, taskDetailShow);
— Btw guys, is it possible for send multiple data in JSON Ajax under one label ?
— In example, i send this
data : {'id': '1','2','3'},
Message permanent page
— If it possible, how to?
— You can send an array
— Hmm?
— { id: [1,2,3,4] }
{ id: [1,2,3,4] }
— Owh i see
— I got it
— Thanks marco