Can anyone explain the meaning of this code?
if (data.result) {
$('ul#intlist').append(data.content);
}
|
Can anyone explain the meaning of this code?
|
||||
|
|
|
This code is basically checking whether some data exists So if you had an UL as follows:
Then the jQuery code would be inserting the result of In jQuery you can use CSS selectors to gain access to the elements you want. If you were to do You can read more about jQuerys |
||||
|
|
|
if the returning |
|||
|
|