I am using a plugin called Wp-moo-tree
The purpose of this plugin is to display a hierarchical tree, similar to widows explorer folder tree some thing as follows
-- Folder-1
----- Folder-1.1
----- Folder-1.2
The HTML coding of above hierarchical tree displayed inside the DOM (document object model) is
<div>Folder-1</div>
<div>Folder-1.1</div>
<div>Folder-1.2</div>
which is parsed from a HTML query as follows
<a href="folder1.html">Folder-1</a>
<a href="folder1.1.html">Folder-1.1</a>
<a href="folder1.2.html">Folder-1.2</a>
My issue is I want to add the link (a href) portion also, along with "Folder-1" in the DOM parsed hierarchical tree as follows
<div><a href="folder1.html">Folder-1</a></div>
How can I do this? Anyone have idea about which portion of Javascript is doing this in wp-mootree?