Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Escape jQuery identifiers #1796

Merged
merged 3 commits into from
Nov 17, 2016
Merged

Escape jQuery identifiers #1796

merged 3 commits into from
Nov 17, 2016

Commits on May 13, 2016

  1. Merge pull request #1 from lift/master

    update
    Austen Holmes committed May 13, 2016
    Configuration menu
    Copy the full SHA
    c8b2a1b View commit details
    Browse the repository at this point in the history
  2. Escape jQuery identifiers

    If you have an identifier with a . character in it, for example, <input id="name.first" /> jQuery will try to find an element with id "name" and class "first".  This is unexpected behavior.  In this case, the "." must be escaped with a backslash.
    Austen Holmes committed May 13, 2016
    Configuration menu
    Copy the full SHA
    e574635 View commit details
    Browse the repository at this point in the history

Commits on May 18, 2016

  1. Use document.getElementById for liftJQuery

    Instead of trying to escape id selectors, use document.getElementById
    Austen Holmes committed May 18, 2016
    Configuration menu
    Copy the full SHA
    5acc207 View commit details
    Browse the repository at this point in the history