My favorites | Sign in
Project Home Downloads Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
GetInvolved  

Featured, Phase-Support
Updated Mar 18, 2011 by josip.ka...@gmail.com

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

Comment by nabinpa...@gmail.com, Sep 26, 2011

How do i change the path dynamically. I mean with a condition check pointer navigation should change.

Comment by project member josip.ka...@gmail.com, Sep 26, 2011

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);
Powered by Google Project Hosting