A good[ish] website
Web development blog, loads of UI and JavaScript topics
Simple way to check if element exists in jQuery.
The $('#module2')
is always truthy, because an empty array is truthy Boolean([])
. So the length needs to be checked:
if ($('#module2').length > 0) {
// Exists
} else {
// Does not exist
}
Comments would go here, but the commenting system isn’t ready yet, sorry.