<!----- или до подключения pace.js ----->
<script>
window.paceOptions = {
ajax: {
trackMethods: ["GET", "POST"]
}
};
</script>
<script src="/pace/pace.js"></script>
<!----- или атрибутом в json-формате ----->
<script data-pace-options='{"ajax":"trackMethods":["GET","POST"]}' src='/pace/pace.js'></script>
The comparison x == y, where x and y are values, produces true or false. Such a comparison is performed as follows:
...
5. If Type(x) is String and Type(y) is Number, return the result of the comparison ToNumber(x) == y.
ToNumber applied to Strings applies the following grammar to the input String. If the grammar cannot interpret the String as an expansion of StringNumericLiteral, then the result of ToNumber is NaN.
'A' == 65
// =>
Number('A') == 65
// =>
NaN == 65
// =>
false
++[[]][+[]]+[+[]]
Блочные элементы могут содержать строчные элементы и другие блочные элементы, для которых их родитель будет являться контейнером.(itchief.ru)
Блочные элементы могут содержать внутри себя элементы любого типа. Нельзя размещать блочные элементы внутри строчных, за исключением элемента img.(html5book.ru)