PricingBlog

Is possible to remove an element from HTML page?

  • uunicode-1277946755023110245

    unicodes

    1 year ago

    In JavaScript, I usually do this by adding a class name to the parent, like ToDo-Parent, and if there is a click on a specific button within that parent, I remove the e.target (ToDo-Parent) from the HTML. Can this be achieved in Toddle?
  • max.kayr-1277951991339024384

    Max

    1 year ago

    If you use the show/hide formula on an element, it will be taken out of the rendering or added (if it evaluates to true)
  • uunicode-1278002261804584970

    unicodes

    1 year ago

    Wow, you are right. Show/hide isn't display none, but removing from the HTML 😅. I completely missed that!
    💪1