Quote:
Originally Posted by m2244
I am trying to figure out what the guy who created this code did here. I am taking over this project and he is gone.
This first one is the one I need to understand
Code:
jxml = $.xml2json(success);
This one is not as important.
Code:
JSFX_FloatDiv('floatingConsol', 10, 8).floatVert();
|
felgall has provided the correct way
you can answer you own questions.
here is a guess ...
jxml = $.xml2json(success);
success contains the
xml results of an $.Ajax
call $.xml2json converts
that to javascript Object
litteral notation and jxml
will contain the object
described by the xml
JSFX_FloatDiv('floatingConsol', 10, 8).floatVert();
aliows the div with the id of floatingConsol
to remain in the upper left hand corner
even when the page is scrolled