Bug: page-cache.js:40 «Uncaught TypeError: element.prop is not a function»

How to fix

Replace the problem line with the new one:

.prop('href', element.src)

Description

The element is a HTMLIFrameElement, it does not have the prop() method, but had the src property.

1 Like