Lines Matching refs:htmlElement

851 			this.htmlElement = {}; // DOM elements created by jPlayer
992 this.htmlElement.poster = document.createElement('img');
993 this.htmlElement.poster.id = this.internal.poster.id;
994 …this.htmlElement.poster.onload = function() { // Note that this did not work on Firefox 3.6: poste… method
999 this.element.append(this.htmlElement.poster);
1010 this.htmlElement.audio = document.createElement('audio');
1011 this.htmlElement.audio.id = this.internal.audio.id;
1012 …this.html.audio.available = !!this.htmlElement.audio.canPlayType && this._testCanPlayType(this.htm…
1016 this.htmlElement.video = document.createElement('video');
1017 this.htmlElement.video.id = this.internal.video.id;
1018 …this.html.video.available = !!this.htmlElement.video.canPlayType && this._testCanPlayType(this.htm…
1027 …ormat] = self.html[self.format[format].media].available && "" !== self.htmlElement[self.format[for…
1162 this._addHtmlEventListeners(this.htmlElement.audio, this.html.audio);
1163 this.element.append(this.htmlElement.audio);
1169 this._addHtmlEventListeners(this.htmlElement.video, this.html.video);
1170 this.element.append(this.htmlElement.video);
1323 this.htmlElement.video.controls = this.status.nativeVideoControls;
1457 …self.htmlElement.media.currentTime = 0; // Safari does not care about this command. ie., It works …
1459 …self.htmlElement.media.pause(); // Pause otherwise a click on the progress bar will play from that…
2031 this.htmlElement.poster.src = media.poster;
2041 if(this.htmlElement.audio) {
2042 this.htmlElement.audio.setAttribute('title', media.title);
2044 if(this.htmlElement.video) {
2045 this.htmlElement.video.setAttribute('title', media.title);
2877 e = this.htmlElement.video;
2891 e = this.htmlElement.video;
2900 var $media = $(this.htmlElement.media).empty();
2915 this.htmlElement.media.src = this.status.src;
2936 this.htmlElement.media = this.htmlElement.audio;
2942 this.htmlElement.video.poster = this._validString(media.poster) ? media.poster : "";
2944 this.htmlElement.media = this.htmlElement.video;
2948 if(this.htmlElement.media) {
2949 if(this.htmlElement.media.id === this.internal.video.id && !this.status.nativeVideoControls) {
2952 this.htmlElement.media.pause();
2956 if(this.htmlElement.media) {
2957 this.htmlElement.media.src = "about:blank";
2960 …this.htmlElement.media.load(); // Stops an old, "in progress" download from continuing the downloa…
2969 this.htmlElement.media.load();
2975 media = this.htmlElement.media;
3015 media = this.htmlElement.media;
3053 media = this.htmlElement.media;
3091 this.htmlElement.audio[property] = value;
3094 this.htmlElement.video[property] = value;