-
Simple question
What would the correct syntax be for this:
if('#loaded_max' == 3) {
loading = false;
}
Thanks!
-
The string '#loaded_max' will neve be equal to the number 3, so you could just delete those lines.
-
 Originally Posted by scotstown
What would the correct syntax be for this:
if('#loaded_max' == 3) {
loading = false;
}
Thanks!
What that supposes to do? As it is now, it is wrong, because a string of non-numeric characters can not be compared with a number.
-
if(loaded_max == 3) {
loading = false;
}
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
|
|
Bookmarks