|
CORE
NATIVE
TABLE
MAKE
CUSTOMIZE
EFFECTS
effects_base.js
effects_morph.js
effects_fade.js
effects_move.js
effects_extra.js
effects_toggle.js
effects_cycle.js
effects_cycles.js
VIRTUAL BOX
PLUG-IN
|
virtual_ajax.js
Contains the Virtual.Ajax and Virtual.Ajax.single Classes to create customizable and flexible light boxes of content loaded from the server Contains Class Virtual.Ajax, Class Virtual.Ajax.single Requires Summary
Custom Class to create ajax virtual boxes.Applies the virtual ajax effect to each link which has 'virtualajax' as value of the classname property. Extends Virtual Constructor new Virtual.Ajax (options) Properties
Options
Note You can set the dimensions of the virtual box and the contents of the caption by setting the title property of each link in this way:'width :: height :: title :: content', where the separator is the ' :: ' string Example // applies the virtual ajax effect to each link which has 'virtualajax' as value of the classname property var virtual = new Virtual.Ajax({ enable: { arrows: true, caption: false }, effect: 'fix' }); // the HTML <a href="my_page.php" class="virtualajax" title="460 :: 340">load my page</a> Custom Class to create single ajax virtual boxes. Applies the virtual ajax effect to the given link. Extends Virtual.Ajax Implements Virtual.single Constructor new Virtual.Ajax.single (element, options) Properties
Options
Example // applies the virtual ajax effect to the 'myElement' link var virtual = new Virtual.Ajax.single('myElement', { style: false effect: 'open' }); // the HTML <a id="myElement" href="/my_page.php" title="460 :: 340">static content</a>
Documentation By
Riccardo Degni -
powered by MakeDocs, CMS by RD |