summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-FE/client/bower_components/jqTree/_entries/66_tree-dblclick.md
blob: 97768a387606699eeefc95bb13521c535869068d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
title: tree.dblclick
name: event-tree-dblclick
---

The **tree.dblclick** is fired when a tree node is double-clicked. The event contains the following properties:

* **node**: the node that is clicked on
* **click_event**: the original click event

{% highlight js %}
$('#tree1').bind(
    'tree.dblclick',
    function(event) {
        // event.node is the clicked node
        console.log(event.node);
    }
);
{% endhighlight %}