Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/23/2024 in all areas

  1. The highlighted </div> tags have no corresponding <div> tags... When the page is run, the browser adds five </div> tags at the end to close off unclosed div elements... In addition, your table markup is inconsistent, with some rows having three columns and others only having two.
    1 point
  2. Your HTML markup contains many mis-matched <Div..</DIV> tags. Your JQuery is wrong. For example, this doesn't work - addItem() is not called. const addOrderBtn = $('#add-order-btn'); addOrderBtn.click(function (e) { e.preventDefault(); addItem(); }); It needs to be const addOrderBtn = $('#add-order-btn'); $(addOrderBtn).click(function (e) { // note the $(addOrderBtn) e.preventDefault(); addItem(); }); Use your browser's developer tools to debug your JS code
    1 point
This leaderboard is set to New York/GMT-04:00
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.