Adding a dynamic sublist to a task manager with Javascript (JQuery) or CSS -


i have app little this (although different). in app, can add lists. want add button can add "subtask" 1 of these tasks; subtask(s) indented, , indentation accessible via sort of small button or of sort left of parent class. how achieve this?

i use add elements list:

// add todo     $form.submit(function(e) {         e.preventdefault();         $.publish('/add/', []);     }); 

and want able add nested lists under it. i've tried using tags, doesn't seem work; additionally, i'm not sure how make said nested list accessible via button.


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -