There are two types of markup in Liquid: Output and Tag.
- Output markup (which may resolve to text) is surrounded by
{{ matched pairs of curly brackets (ie, braces) }}- Tag markup (which cannot resolve to text) is surrounded by
There are two types of markup in Liquid: Output and Tag.
{{ matched pairs of curly brackets (ie, braces) }}| var list = $$("#item-page-wrapper .list-items table tbody .lineItemMainInfo .lineItemPart strong"); | |
| var total=0; | |
| for(i=0; i<list.length;i++){ | |
| total += parseFloat(list[i].innerText.replace("$","")); | |
| } | |
| alert(list.length+" items for a total of: $"+total.toFixed(2)); |