I can create a <div> using 2 jQuery fucntions.
Either:
var div = $("<div></div>");
$("#box").append(div);
Or:
$("#box").append("<div></div>");
What are the drawbacks of using second method other than re-usability?
|
I can create a Either:
Or:
What are the drawbacks of using second method other than re-usability? |
||||
| show 3 more comments |
|
The first option gives you more flexibilty:
And of course Another good practice is prefixing your jQuery variables with |
|||||
|
|
If |
|||
|
|
|
I personally think that it's more important for the code to be
And your first Method as:
|
|||
|
|
|
I would recommend the first option, where you actually build elements using jQuery. the second approach simply sets the innerHTML property of the element to a string, which happens to be HTML, and is more error prone and less flexible. |
|||||
|
.html, but not.appendin 2nd case? – Engineer May 16 '12 at 13:26