Top
Unable to display Whatfix content within iframes
  • 19 May 2025
  • 1 Minute zum Lesen
  • Dunkel
    Licht
  • pdf

Unable to display Whatfix content within iframes

  • Dunkel
    Licht
  • pdf

The content is currently unavailable in German. You are viewing the default English version.
Artikel-Zusammenfassung

Issue

Unable to display Whatfix content within iframes of an application.

Probable Causes

  • Element Selection: The application contains elements that are inside multiple layers of iframes, which prevents Whatfix from automatically detecting the required element.

  • Issues with Load Time: The iframes in your application take an unusually long time to load.

Suggested Solutions

  • Depending on the element selected in an iframe application, define the entire path, starting from the element back to the outermost iframe.

For instance, the selected element is a Username field inside the iframe and you want to display Whatfix content on this field. You need to declare the "full path" to the "Username" field. This path includes the iframe it's located in. Think of it as saying: "First, go to the iframe with the ID 'login-area', then, inside that iframe, find the input field with the ID 'username'.

Here's an example code for the Main HTML:

<!DOCTYPE html>
<html>
<head>
  <title>Main Dashboard</title>
</head>
<body>
  <h1>Employee Dashboard</h1>
  <iframe id="login-area" src="login.html"></iframe>
  <p>Other dashboard content.</p>
</body>
</html>

Here's an example code for the iframe HTML:

<!DOCTYPE html>
<html>
<head>
  <title>Login Form</title>
</head>
<body>
  <h2>Login</h2>
  <input type="text" id="username" placeholder="Username">
  <input type="password" placeholder="Password">
  <button>Login</button>
</body>
</html>
Note:

If issue persists, contact support@whatfix.com.


War dieser Artikel hilfreich?

Changing your password will log you out immediately. Use the new password to log back in.
First name must have atleast 2 characters. Numbers and special characters are not allowed.
Last name must have atleast 1 characters. Numbers and special characters are not allowed.
Enter a valid email
Enter a valid password
Your profile has been successfully updated.