Possible Duplicate:
$('<element>') vs $('<element />') in jQuery
Which one of these two are the correct way to do it:
$('<div>')
or
$('<div />')
They both seem to work. Is one way more right than the other, or do they both always work?
Which one of these two are the correct way to do it:
or
They both seem to work. Is one way more right than the other, or do they both always work? |
|||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
They produce identical results in jQuery. |
|||||||||||||||||
|
|
From the docs:
To ensure cross-platform compatibility, the snippet must be well-formed. Tags that can contain other elements should be paired with a closing tag:
Alternatively, jQuery allows XML-like tag syntax (with or without a space before the slash):
Tags that cannot contain elements may be quick-closed or not:
|
|||
|
|
|
Both variants give you same result but this
is better, more readable than
|
|||
|
|
|
Though it seems they produce identical result, but based on uses they might not generate same result. For example: While jQuery parse And while jQuery parse |
|||
|
|