====== JQueryGetElements ====== Gets the element in the active tab, satisfying the specified conditions ===== Syntax ===== function JQueryGetElements(aSelector: string): TCSElement; ==== Parameters ==== * **//aSelector//** * //type:// string * //functions:// [[http://anton.shevchuk.name/javascript/jquery-for-beginners-selectors/|селектор в стиле JQuery]] ==== Returned value ==== * //type:// [[en:wascript:pascal:records:tcselements|TCSElements]] * //functions:// structure containing parameters of found array of elements ===== Notes ===== * If no elements are found, the resultant structure of the field will be empty. * Found elements will be highlighted by a dotted frame ===== Examples ===== -//Get an array of elements - elements descendants "p" var elements := JQueryGetElements('p > *');