If one refers to a component name in a javascript file that loads before the page is shown (either in a project javascript file or in Device Ready or Load page event), all javascript on the page will fail.
In traditional JQuery, the action would be ignored, but in Tiggzi, the page fails.
I noticed that it only occurs when you refer to an element using the Tiggr shorthand. If one refers to the variable in proper JQuery notation, the script will continue to work.
• Tiggr('field').html('some data');//entire script fails
• $('input[dsid="field"]').html('some data');//script continues to work