The button that’s supposed to lead to a new page when you click “FIND OUT MORE” on a job opens up for a few seconds and then I get this error “Application-error: a client-side exception has occurred. (See the browser console for more information)”
My website is www.simulationengineerjobs.com
Please how do I fix this problem?
Hi,
I can guess that what you are trying to open with the Find Out More button is a linkedin page (or external websites) right?
This is not possible to do so, the Find Out More button should open a new tab instead.
The issue you’re encountering is related to Cross-Origin Resource Sharing (CORS) restrictions, which are a security feature implemented by web browsers to prevent malicious websites from making unauthorized requests to other websites on behalf of a user.
When you try to open a LinkedIn profile or any external website inside your modal, the browser is attempting to load the external website within your app’s context (often within an <iframe>
or similar), and LinkedIn (and other websites) may block this action because they don’t allow their content to be embedded in this way. This is made to prevent Clickjacking.
Okay, thank you very much.
I have been able to fix the issue by doing the following:
Step 1: Clicked on the “Job openings” section
Step 2: On the far right on the properties menu I choose “Actions”
Step 3: Then scrolled all the way down to “ITEM BUTTONS”
Step 4: Over there I clicked the drop-down menu for “Open URL”
Step 5: In the second option that says “Open In” I clicked it and changed it from “Modal” to “New Tab”