Gantt Chart

hello… we implemented Filtering and Zooming Gantt Chart in our project… onclick of task its opening a popup window but now we need to redirect to other page. kindly help us by sending code for this requirement.
Thanks in advance

By default gantt do not show details on single click, it do so on dbl-click which can be blocked by using

gantt.config.details_on_dblclick = false;

In common case, you can use in template links like next

<a href="some.php" onclick="event.cancelBubble = true;">My Link</a>

javascript code will prevent any extra reactions from link clicking