You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

Minimal setup for expose


Expose demo 1 / 5 : Minimal setup for expose

This document shows you the basics of setting up expose. You take one or more elements then call the expose method and the magic happens. Here is a demo:

Click on this element to expose it.

The exposing disappears when you click somewhere outside the element or press the ESC button.

HTML code

This demo uses the following simple DIV element to be exposed. It is styled with CSS.

<div id="test">
	Click on this element to expose it.
</div>

JavaScript code

The exposing happens inside the click event. You'll get access to the clickable element with the $(this) call and the exposing is initialized with the expose() constructor. The api variable is enabled to get access to the exposing API and the load() method performs the exposing effect.

// execute your scripts when the DOM is ready. this is a good habit
$(function() {

	// assign a click event to the exposed element, using normal jQuery coding
	$("#test").click(function() {

		// perform exposing for the clicked element
		$(this).expose({api: true}).load();

	});
});
Show this demo as a standalone page