@lorn-potter For the notes app I'm thinking I want to have a page with three buttons with C++ functions connected to them where the first would add a textarea along with a button to save a note and a button to delete a note; the second one to let the user delete a note (works the same as the aforementioned one: shows a list of notes in a modal dialog box where the user can select one or more (adjacent) notes and delete them); and the third to browse notes (of course if the user decides he/she delete a note from the list while browsing, he/she should be able to do so).
Originally I was thinking I'd use QML but I want to try this in regular HTML, with CSS and JavaScript (I'll just write the C++ code and have Emscripten take care of the HTML and JavaScript, though). So is this possible like what I described? If so, I'd like some help with this. Thanks.