Lab Session: Use a library

From NSB App Studio
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

In this lab session, you will add the jQuery library to your application and modify some code to use it.

Student Outline

  1. Open LabLibrary.nsx
  2. Add the jQuery library to the project.
  3. Replace instances of
    label.textContent = "value"
    with
    $("#label").text("value")
    to verify jQuery is working.