I´m reading a Polymer tutorial but I don't understand some code lines, like this:
postTask: function(e) { // Add a new task
var tsk = this.$.tTask.value;
var usr = this.$.tUser.value;
...
In this code block I don't understand the selector this.$.tTask.value, is another way to select in jQuery syntax?
$is a valid JavaScript identifier name. It is the same used by jQuery by coincidence (mostly because it is easily distinguished). It is nothing more thatthis.EasyToRememberVarName.tTask.value. You should look into Polymer documentation for more accurate description.