x3dom inline example is not loading properly on my internet explorer 11. It takes a long time. It's working fine on chrome, firefox, even edge. I have a project based on this example. I also found out that the following code is not working even if the model loads. IE couldn't find 'MA_Nose' material node inside the x3d file. How can I fix this. if(document.getElementById('Deer__MA_Nose').getAttribute('diffuseColor')!= '1 0 0')
Here is the link
inline example html
x3d inline example not working in internet explorer
212 views Asked by Venkatraj GM At
1
There are 1 answers
Related Questions in JAVASCRIPT
- Using Puppeteer to scrape a public API only when the data changes
- inline SVG text (js)
- An array of images and a for loop display the buttons. How to assign each button to open its own block by name?
- Storing the preferred font-size in localStorage
- Simple movie API request not showing up in the console log
- Authenticate Flask rest API
- Deploying sveltekit app with gunjs on vercel throws cannot find module './lib/text-encoding'
- How to request administrator rights?
- mp4 embedded videos within github pages website not loading
- Scrimba tutorial was working, suddenly stopped even trying the default
- In Datatables, start value resets to 0, when column sorting
- How do I link two models in mongoose?
- parameter values only being sent to certain columns in google sheet?
- Run main several times of wasm in browser
- Variable inside a Variable, not updating
Related Questions in HTML
- How to store a date/time in sqlite (or something similar to a date)
- How to use custom font during html to pdf conversion?
- Storing the preferred font-size in localStorage
- mp4 embedded videos within github pages website not loading
- Scrimba tutorial was working, suddenly stopped even trying the default
- Is there any way to glow this bulb image like a real light bulb
- With non-graphical maps in Leaflet, zoomDelta doesn't work
- What can I do to improve my coding on both html and css
- Uncaught TypeError: google.maps.LatLng is not a constructor at init (script.js:7:13)
- Bootstrap modal not showing at the desired position on a web page when the screen size is smaller
- Displaying a Movie List on a Website Using Jinja2 and Bootstrap
- How to redirect to thank you page after submitting a Google form embedded into a Google Site?
- Storing selected language in localStorage
- Fences (parenthesis, braces) in HTML and MathML
- Understanding Scroll Anchoring Behavoir
Related Questions in INTERNET-EXPLORER
- VBA, Internet Explorer and Javascript
- Inefficient driver.get() performance in Loops with IEDriver
- NEXT JS -unpecified error on ecternal calls
- Internet Explorer fails to launch via Selenium
- IE Mode Edge driver stuck on 'This is the initial start page for the WebDriver server' when running in Elevated Mode (Admin Mode) [Selenium]
- Can open new window in different browser?
- unable to get the right object to set the windowState
- Filters to apply for an application that can only run on IE compatibility
- How to accept popup message from Edge in IE mode Python - Selenium
- Does anyone know why i cannot see the source code of a website while in Internet Explorer mode in Microsoft Edge?
- Protected Mode settings are not the same for all zones (SELENIUM) (IE MODE IN EDGE)
- Browser Compatibility for WebTransport
- Internet Explorer don't POST
- Microsoft Edge API and IE Mode
- Close security screen alert Internet Explorer Pop-up using VBA and Windows API
Related Questions in X3D
- How to apply X3D clipPlane to only one object in the scene without affecting others?
- Only half of the faces are displayed from an X3D file
- X3d - When using the same vertice in IndexedTriangleSet, it appears black
- how to fix UnicodeEncodeError: 'utf-8' codec can't encode character '\udcae' in position 1: surrogates not allowed on blender 3.6
- Parse WRL file to X3D
- can javascript select a user's image to insert on a webpage without uploading to a server?
- Is there a way to rotate objects about a tilted axis in X3D?
- X3d file from s3 bucket not loading
- How see a 3D picture from all angles hosted on a link on my phone by moving my phone?
- Order of transformations in X3d
- SFNode field in Proto
- Rotation of TextureTransform
- jQuery function $.html() does not wait for other lines of code to finish
- Error when updating X3D Inline url via Javascript
- X3D: how to add coordinates dynamically into DOM for a IndexedFaceSet?
Related Questions in X3DOM
- How to apply X3D clipPlane to only one object in the scene without affecting others?
- Turning a line in a table into a hyperlink
- Rotation of TextureTransform
- Error when updating X3D Inline url via Javascript
- X3D: how to add coordinates dynamically into DOM for a IndexedFaceSet?
- How do I rotate an x3d web object using jS?
- Svelte doesn't handle click events from x3dom correctly
- How can I change contents of X3D scene via Javascript with PHP or HTML load?
- IIS 10 server is not compressing .x3d file type
- x3dom -> inline URL format in a Blazor Server App issues
- How to lock the x axis in x3dom
- Superposed transparent surfaces in x3dom show a jagged, patchy appearance
- x3d inline example not working in internet explorer
- Where are the issues in this conversion from VRML to X3D?
- X3DOM ImageTexture url not finding local files
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
I tried to test your code in IE 11 browser.
I found that your example is showing this error.
This is the problematic line.
This error is in x3dom.js file. So we cannot modify it.
I suggest you try to compile the file using Babel.js. It may help to fix ES6 code related issues by converting it to ES5 code.
If the issue persists then it can be possible that inlScene.children.length is not supported in the IE browser and you may need to use some polyfill to fix this issue.
further, you can also try to contact x3Dom support to get their opinion on this issue.