jQuery Notes
Sigh... another collection of syntax notes for yet another language (sort of)...
-
On API optional parameters... apparently jQ will implicity figure out the missing parameters based on the type of value... no, that's not going to cause confusion... "With regard to your specific example, there isn't any value being passed to data (because you don't have to do so). In the code for the jQuery on function it determines which parameter the value is actually for based on the type of the value." - http://stackoverflow.com/questions/16234974/understanding-jquery-api-documentation-syntax
-
jQuery (because it is JS) is case sensitive in many places!
-
jQuery + JSON / AJAX - Some server side systems, e.g. Lucee (not sure if Adobe Coldfusion is the same) will send all variable NAMES back to client in all UPPER CASE! Back on client side, the javascript / jQuery is case sensitive, must use/test for UPPER CASE !!
tags: jq, jquery, javascript