Haxe API Documentation
Back | Index
extern class js.JQuery
Available in js
var context(default,null) : js.html.Element
var length(default,null) : Int
function new(html : String) : Void
function add(selector : String, ?context : JQuery) : JQuery
function addClass(className : String) : JQuery
function after(html : String) : JQuery
function andSelf() : JQuery
function animate(properties : { }, ?duration : Int, ?callb : Void -> Void) : JQuery
function append(html : String) : JQuery
function appendTo(html : String) : JQuery
function attr(name : String) : String
function before(html : String) : JQuery
function bind(events : String, callb : JqEvent -> Void) : JQuery
function blur(?callb : JqEvent -> Void) : JQuery
function change(?callb : JqEvent -> Void) : JQuery
function children(?selector : String) : JQuery
function clearQueue(?queueName : String) : JQuery
function click(?callb : JqEvent -> Void) : JQuery
function clone(?withDataAndEvents : Bool) : JQuery
function closest(selector : String, ?context : JQuery) : JQuery
function contents() : JQuery
function css(prop : String) : String
function data(key : String, value : Dynamic) : JQuery
function dblclick(?callb : JqEvent -> Void) : JQuery
function delay(duration : Int, ?queueName : String) : JQuery
function delegate(selector : String, events : String, callb : JqEvent -> Void) : JQuery
function dequeue(?queueName : String) : JQuery
function detach(?selector : String) : JQuery
function die(?events : String, ?callb : JqEvent -> Void) : JQuery
function each(f : Void -> Void) : JQuery
function empty() : JQuery
function end() : JQuery
function eq(index : Int) : JQuery
function error(?callb : JqEvent -> Void) : JQuery
function fadeIn(?duration : Int, ?call : Void -> Void) : JQuery
function fadeOut(?duration : Int, ?call : Void -> Void) : JQuery
function fadeTo(duration : Int, opacity : Float, ?call : Void -> Void) : JQuery
function fadeToggle(?duration : Int, ?call : Void -> Void) : JQuery
function filter(selector : String) : JQuery
function find(selector : String) : JQuery
function first() : JQuery
function focus(?callb : JqEvent -> Void) : JQuery
function focusin(?callb : JqEvent -> Void) : JQuery
function focusout(?callb : JqEvent -> Void) : JQuery
function get() : Array<js.html.Element>
function has(selector : String) : JQuery
function hasClass(className : String) : Bool
function height() : Int
function hide(?duration : Int, ?call : Void -> Void) : JQuery
function hover(onIn : JqEvent -> Void, ?onOut : JqEvent -> Void) : JQuery
function html() : String
function index(?selector : String) : Int
function innerHeight() : Int
function innerWidth() : Int
function insertAfter(html : String) : JQuery
function insertBefore(html : String) : JQuery
function is(selector : String) : Bool
inline function iterator() : Iterator<JQuery>
function keydown(?callb : JqEvent -> Void) : JQuery
function keypress(?callb : JqEvent -> Void) : JQuery
function keyup(?callb : JqEvent -> Void) : JQuery
function last(?selector : String) : JQuery
function live(events : String, callb : JqEvent -> Void) : JQuery
function load(?callb : JqEvent -> Void) : JQuery
function mousedown(?callb : JqEvent -> Void) : JQuery
function mouseenter(?callb : JqEvent -> Void) : JQuery
function mouseleave(?callb : JqEvent -> Void) : JQuery
function mousemove(?callb : JqEvent -> Void) : JQuery
function mouseout(?callb : JqEvent -> Void) : JQuery
function mouseover(?callb : JqEvent -> Void) : JQuery
function mouseup(?callb : JqEvent -> Void) : JQuery
function next(?selector : String) : JQuery
function nextAll(?selector : String) : JQuery
function nextUntil(?selector : String) : JQuery
function not(selector : String) : JQuery
function offset() : { top : Int, left : Int}
function offsetParent() : JQuery
function on(events : String, callb : JqEvent -> Void) : JQuery
function one(events : String, callb : JqEvent -> Void) : JQuery
function outerHeight(?includeMargin : Bool) : Int
function outerWidth(?includeMargin : Bool) : Int
function parent(?selector : String) : JQuery
function parents(?selector : String) : JQuery
function parentsUntil(?selector : String) : JQuery
function position() : { top : Int, left : Int}
function prepend(html : String) : JQuery
function prependTo(html : String) : JQuery
function prev(?selector : String) : JQuery
function prevAll(?selector : String) : JQuery
function prevUntil(?selector : String) : JQuery
function prop(name : String) : Dynamic
function pushStack(elements : Array<js.html.Element>) : JQuery
function queue(?queueName : String, ?callb : (Void -> Void) -> Void) : { length : Int}
function ready(callb : JqEvent -> Void) : JQuery
function remove(?selector : String) : JQuery
function removeAttr(attr : String) : JQuery
function removeClass(?className : String) : JQuery
function removeData(?key : String) : JQuery
function replaceAll(selector : String) : JQuery
function replaceWith(html : String) : JQuery
function resize(?callb : JqEvent -> Void) : JQuery
function scroll(?callb : JqEvent -> Void) : JQuery
function scrollLeft() : Int
function scrollTop() : Int
function select(?callb : JqEvent -> Void) : JQuery
function serialize() : String
function serializeArray() : Array<{ value : String, name : String}>
function show(?duration : Int, ?call : Void -> Void) : JQuery
function siblings(?selector : String) : JQuery
function size() : Int
function slice(start : Int, ?end : Int) : JQuery
function slideDown(?duration : Int, ?call : Void -> Void) : JQuery
function slideToggle(?duration : Int, ?call : Void -> Void) : JQuery
function slideUp(?duration : Int, ?call : Void -> Void) : JQuery
function stop(?clearQueue : Bool, ?jumpToEnd : Bool) : JQuery
function submit(?callb : JqEvent -> Void) : JQuery
function text() : String
function toArray() : Array<js.html.Element>
function toggle(?duration : Int, ?call : Void -> Void) : JQuery
function toggleClass(className : String, ?addRemove : Bool) : JQuery
function trigger(events : String) : JQuery
function triggerHandler(events : String) : JQuery
function unbind(?events : String, ?callb : JqEvent -> Void) : JQuery
function undelegate(?selector : String, ?events : String, ?callb : JqEvent -> Void) : JQuery
function unload(?callb : JqEvent -> Void) : JQuery
function unwrap() : JQuery
function val() : String
function width() : Int
function wrap(html : String) : JQuery
function wrapAll(html : String) : JQuery
function wrapInner(html : String) : JQuery
static var browser(default,null) : { webkit : Bool, version : String, opera : Bool, msie : Bool, mozilla : Bool}
static var cur(accessor,null) : JQuery
Return the current JQuery element (in a callback), similar to $(this) in JS.
static var fx(default,null) : { off : Bool, interval : Int}
static function contains(parent : js.html.Element, child : js.html.Element) : Bool
static function globalEval(js : String) : Void
static function noConflict(?removeAll : Bool) : Void
static function parseJSON(json : String) : Dynamic
Back | Index