Created
March 30, 2012 02:06
-
-
Save toamitkumar/2245787 to your computer and use it in GitHub Desktop.
abhi4717
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Day 1: | |
1. | |
Excellent. Like the clear separation of html, css and js. | |
2. | |
$("<li>"+data[i].text+"</li>").appendTo("#ulTweets").hide(); | |
# This will add "li" to the DOM inside loop. Not good for performance. | |
# Its better to build a string inside a loop and add the whole string to the DOM outside of loop. | |
Day 2: | |
Good work |
Oh sorry... I had read mail from Anubhav. So I thought it might be him.... Thanks for the comments. :-)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
its me Amit :)