Difference between parsing data and loading data?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Jquery parseJSON:
Takes a well-formed JSON string
Returns the resulting JavaScript object.
Jquery load:
Load data from the server and place the returned HTML into the matched element.
1.
parsejust return the object whileloadplace it into the matched element.2.
loadload any data from the server whileparsetakes a well-formed JSON String3.
load“returns” HTML , whileparsean objectDirectly from Xander’s link.