uxcontent
Changes the text contents of an element without changing any of its child elements (only textual part).
jQuery("div.target").uxcontent("Hello World");
uxdecimal
Creates a floating point value with possible precision error into a less precise float with no rounding issues.
eg: 38.55 * 3.5 = 134,925 but in js this number is represented as 134.92499999999998, to be able to represent it as 134.925 one should use the uxdecimal
jQuery.uxdecimal(38.55 * 3.5);
uxcountry
Converts a standard representation of a country (ISO) into a visual locale base representation. Possible values for the format field are: iso, iso2 and iso3.
jQuery.uxcountry("PT", "iso2");
uxalert
Presents an alert box with the specified message and a confirm button. The callback is called when the user confirms.
alert("Hello World", callback);
uxinfo
Presents an info box with the specified message, title and type (which will be added to the title element as a class).
jQuery("body").uxinfo("There was an error.", "Warning", "warning");