Mercurial > hg > isophonics-drupal-site
view vendor/jcalderonzumba/mink-phantomjs-driver/src/Resources/Script/is_checked.js.twig @ 9:1fc0ff908d1f
Add another data file
author | Chris Cannam |
---|---|
date | Mon, 05 Feb 2018 12:34:32 +0000 |
parents | 4c8ae668cc8c |
children |
line wrap: on
line source
{% autoescape 'js' %} (function (xpath) { function getElement(xpath, within) { var result; if (within === null || within === undefined) { within = document; } result = document.evaluate(xpath, within, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null); if (result.snapshotLength !== 1) { return null; } return result.snapshotItem(0); } var node = getElement(xpath); if (node === null) { return null; } if(node.tagName.toLowerCase() != "input"){ return null; } if(node.type.toLowerCase() != "checkbox" && node.type.toLowerCase() != "radio"){ return null; } return node.checked; }('{{ xpath }}')); {% endautoescape %}