From what I read in the api docs for jqxtree, there is no ‘click’ event only a ‘select’ event. Let’s say there is a tree with nodes labeled ‘Page 1’, ‘Page 2’ and ‘Page 3’. The user selects ‘Page 2’ and the corresponding page is loaded. If the user clicks on ‘Page 2’ again the select event is not fired because that node is already selected. If there were a click event, every time the user clicks on the ‘Page 2’ node it would fire the event and load the page.
The reason I want this the user can click on different nodes in different trees and the loaded content changes.
Edit: Nevermind, after reading the reply, I decided to double check… I reread the ‘API Reference’, there is no ‘click’ event but there is an ‘itemClick’ event. Problem Solved.