Lines Matching refs:htmlElement

2896 			this.htmlElement = {}; // DOM elements created by jPlayer
3037 this.htmlElement.poster = document.createElement('img');
3038 this.htmlElement.poster.id = this.internal.poster.id;
3039 …this.htmlElement.poster.onload = function() { // Note that this did not work on Firefox 3.6: poste… method
3044 this.element.append(this.htmlElement.poster);
3055 this.htmlElement.audio = document.createElement('audio');
3056 this.htmlElement.audio.id = this.internal.audio.id;
3057 …this.html.audio.available = !!this.htmlElement.audio.canPlayType && this._testCanPlayType(this.htm…
3061 this.htmlElement.video = document.createElement('video');
3062 this.htmlElement.video.id = this.internal.video.id;
3063 …this.html.video.available = !!this.htmlElement.video.canPlayType && this._testCanPlayType(this.htm…
3072 …ormat] = self.html[self.format[format].media].available && "" !== self.htmlElement[self.format[for…
3207 this._addHtmlEventListeners(this.htmlElement.audio, this.html.audio);
3208 this.element.append(this.htmlElement.audio);
3214 this._addHtmlEventListeners(this.htmlElement.video, this.html.video);
3215 this.element.append(this.htmlElement.video);
3368 this.htmlElement.video.controls = this.status.nativeVideoControls;
3502 …self.htmlElement.media.currentTime = 0; // Safari does not care about this command. ie., It works …
3504 …self.htmlElement.media.pause(); // Pause otherwise a click on the progress bar will play from that…
4076 this.htmlElement.poster.src = media.poster;
4086 if(this.htmlElement.audio) {
4087 this.htmlElement.audio.setAttribute('title', media.title);
4089 if(this.htmlElement.video) {
4090 this.htmlElement.video.setAttribute('title', media.title);
4922 e = this.htmlElement.video;
4936 e = this.htmlElement.video;
4945 var $media = $(this.htmlElement.media).empty();
4960 this.htmlElement.media.src = this.status.src;
4981 this.htmlElement.media = this.htmlElement.audio;
4987 this.htmlElement.video.poster = this._validString(media.poster) ? media.poster : "";
4989 this.htmlElement.media = this.htmlElement.video;
4993 if(this.htmlElement.media) {
4994 if(this.htmlElement.media.id === this.internal.video.id && !this.status.nativeVideoControls) {
4997 this.htmlElement.media.pause();
5001 if(this.htmlElement.media) {
5002 this.htmlElement.media.src = "about:blank";
5005 …this.htmlElement.media.load(); // Stops an old, "in progress" download from continuing the downloa…
5014 this.htmlElement.media.load();
5020 media = this.htmlElement.media;
5060 media = this.htmlElement.media;
5098 media = this.htmlElement.media;
5136 this.htmlElement.audio[property] = value;
5139 this.htmlElement.video[property] = value;