Skip to content

Files

Latest commit

 

History

History
12 lines (7 loc) · 362 Bytes

no-jquery-raw-elements.md

File metadata and controls

12 lines (7 loc) · 362 Bytes

Pattern: Use of JQuery raw element

Issue: -

Description

Do not create HTML elements using JQuery and string concatenation. It is error prone and can hide subtle defects. Instead use the JQuery element API.

Further Reading