Answers for "Property 'fotorama' does not exist on type 'JQuery<HTMLElement>'"

0

property "'element'" does not exist on type 'htmlelement'.ts(2339)

// For getting `.elements` with forms you need to cast as:
// `HTMLFormElement`

const form = document.getElementById('my-id') as HTMLFormElement;
Posted by: Guest on July-26-2021
2

Property 'on' does not exist on type 'HTMLElement'.

To prevent this error you can write:

var plotDiv: any = document.getElementById('myDiv');
plotDiv.on('plotly_relayout', ...
document.getElementById('myDiv') return HTMLElement. This type doesn't contain method
on because this method is added within plotly-latest.min.js. So in order to silence
the typescript warning you can explicity say compile not to check types for plotDiv

Another way is create type definition like:

interface PlotHTMLElement extends HTMLElement  {
  on(eventName: string, handler: Function): void;
}

var plotDiv  = <PlotHTMLElement>document.getElementById('myDiv')
plotDiv.on('plotly_relayout', function() {

});
Posted by: Guest on January-21-2021

Code answers related to "Property 'fotorama' does not exist on type 'JQuery<HTMLElement>'"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language