Lines Matching refs:attr

98 ;function QTip(target, options, id, attr) {  argument
116 attr: attr, property in QTip.cache
147 $.attr(this.target[0], 'aria-describedby', this._id);
165 .attr(ATTR_ID, this.id)
246 title = target.attr(oldtitle);
271 target.attr('title', title).removeAttr(oldtitle);
303 …return !( $.isFunction(c) || (c && c.attr) || c.length || ($.type(c) === 'object' && (c.jquery || …
334 var loading = text || $(this).attr(api.options.content.attr) || 'Loading...',
418 if(this.options.content.text === this.target.attr(prev)) {
419 this._updateContent( this.target.attr(v) );
475 this.tooltip.attr('tracking', posOptions.target === 'mouse' && posOptions.adjust.mouse);
1019 $.attr(tooltip[0], 'aria-hidden', !!!state);
1185 .attr('aria-disabled', state);
1226 .attr('role', 'button')
1382 var api = QTIP.api[ $.attr(this, ATTR_ID) ];
1661 var obj, posOptions, attr, config, title,
1692 attr = elem.attr(config.content.attr);
1695 if(config.content.attr !== FALSE && attr) { config.content.text = attr; }
1727 elem.attr(ATTR_HAS, id);
1730 if(config.suppress && (title = elem.attr('title'))) {
1732 elem.removeAttr('title').attr(oldtitle, title).attr('title', '');
1736 obj = new QTip(elem, config, id, !!attr);
1825 attr: function(attr, val) { argument
1831 if(attr === title && api && 'object' === typeof api && api.options.suppress) {
1833 return $.attr(self, oldtitle);
1837 if(api && api.options.content.attr === title && api.cache.attr) {
1842 return this.attr(oldtitle, val);
1858 elems.filter('['+oldtitle+']').attr('title', function() {
1859 return $.attr(this, oldtitle);
1883 if(elem.attr(ATTR_HAS)) {
1912 attr: 'title', property in QTIP.defaults.content
2333 inner.attr(WIDTH, newSize[0] * SCALE).attr(HEIGHT, newSize[1] * SCALE);
2616 var isTabIndexNotNaN = !isNaN($.attr(element, 'tabindex')),
3173 rootWidth = root.attr('width') || root.width() || parseInt(root.css('width'), 10);
3174 rootHeight = root.attr('height') || root.height() || parseInt(root.css('height'), 10);
3261 var shape = area.attr('shape').toLowerCase().replace('poly', 'polygon'),
3262 image = $('img[usemap="#'+area.parent('map').attr('name')+'"]'),
3263 coordsString = $.trim(area.attr('coords')),