Introduction
Get involved and develop more improved jquery embedded help plugin.
Details
Get involved and develop more improved jquery embedded help plugin.
Contribute to embedded help concept and develop more useful scripts that can be easily integrated into web interface.
More details on project page or on www.embedded-help.net
How do i change the path dynamically. I mean with a condition check pointer navigation should change.
The path is not designed to change dynamically, but You could load the path rom json file into a separate variable.
Something like:
var pathDefinition; $.getJSON("./paths.json", function(data) { pathDefinition = data; $('#EHhelpBox').embeddedHelp(pathDefinition); });So later You can make modifications on pathDefinition variable (json object array).
Afther modifications on paths justo reload plugin:
$('#EHhelpBox').embeddedHelp(pathDefinition);