Defiant Example

HTML

<script src="http://defiantjs.com/defiant.js/dist/defiant-latest.min.js"></script>
<pre id="output"></pre>

JavaScript

var data =[{"text":"Great-Grandparent MoA","children":[{"text":"Grandparent MoA","children":[{"text":"Parent MoA"}]}]},{"text":"Synthase/synthetase inhibitor","children":[{"text":"1,3-Beta-glucan synthase inhibitor"}]},{"text":"Dehydrogenase inhibitor","children":[{"text":"Beta hydroxysteroid dehydrogenase inhibitor","children":[{"text":"11 Beta hydroxysteroid dehydrogenase inhibitor"}]}]},{"text":"Oxygenase inhibitor","children":[{"text":"Cytochrome P450 inhibitor","children":[{"text":"11-beta-hydroxylase inhibitor"}]}]},{"text":"Oxygenase inhibitor","children":[{"text":"Lipoxygenase inhibitor","children":[{"text":"12 Lipoxygenase inhibitor"}]}]},{"text":"Oxygenase inhibitor","children":[{"text":"Lipoxygenase inhibitor","children":[{"text":"15 Lipoxygenase inhibitor"}]}]},{"text":"Oxygenase stimulant","children":[{"text":"Lipoxygenase stimulant","children":[{"text":"15 Lipoxygenase stimulant"}]}]}],
    res = JSON.search( data, '//*[text="Lipoxygenase stimulant"]' )
    output = document.getElementById('output');

output.innerHTML = JSON.stringify( res, null, '   ' );