| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 6 months |
| seen | May 2 at 11:05 | |
| stats | profile views | 3 |
|
Nov 29 |
answered | embedding youtube video using iframe gives “Unsafe JavaScript attempt … ” |
|
Nov 29 |
comment |
embedding youtube video using iframe gives “Unsafe JavaScript attempt … ” Why are you trying to do it via iframe, and not an <embed> tag ? |
|
Nov 29 |
comment |
embedding youtube video using iframe gives “Unsafe JavaScript attempt … ” Actually what is happening is that one of the scripts from that youtube page is trying to access the parent's javascript objets, and that is not allowed between parent-iframe of different domains. Only same domain iframe can access parent's JS objects. Your video will work, since that is only flash, but other scripts in that youtube page are trying to access parent's JS objects which is giving error. |
|
Nov 29 |
comment |
embedding youtube video using iframe gives “Unsafe JavaScript attempt … ” The src of the iframe I appended is the same as in your example. Moreover, iframes are allowed to be of different domains. Can you try this piece of code : var iframe = document.createElement('iframe'); iframe.setAttribute('src' , 'http://www.youtube.com/embed/8vJwFvFi4ZY?wmode=transparent'); document.body.appendChild(iframe); and see if the error still comes ? |
|
Nov 29 |
answered | embedding youtube video using iframe gives “Unsafe JavaScript attempt … ” |
|
Nov 29 |
awarded | Scholar |
|
Nov 29 |
comment |
Querying for date using jongo driver for mongo Yes, it works :) |
|
Nov 29 |
accepted | Querying for date using jongo driver for mongo |
|
Nov 29 |
comment |
Querying for date using jongo driver for mongo So jongo will try to find a variable named future (when using the first approach) ? |
|
Nov 29 |
asked | Querying for date using jongo driver for mongo |
|
Nov 27 |
comment |
Exception in thread “main” java.lang.UnsatisfiedLinkError: Native.initiate(I)V while running native dll from Java I worked out every thing and it finally worked. But now I am having a very weird issue. When I call the initiate function from Java, it works, but as soon as I call any second function, it gives link error. There is nothing wrong in the C++ code, as I moved every single line of C++ code inside the initiate function and the function still ran, while keeping only a printf statement in the second function, and it still gave error. |
|
Nov 7 |
comment |
Exception in thread “main” java.lang.UnsatisfiedLinkError: Native.initiate(I)V while running native dll from Java Hi, I did not include the file in the question previously, but now I have updated it. I am using HNative instead of JNI as this pacifier.com/~mmead/cs510jip/jni post suggests to use HNative for Windows. |
|
Nov 7 |
awarded | Editor |
|
Nov 7 |
comment |
Exception in thread “main” java.lang.UnsatisfiedLinkError: Native.initiate(I)V while running native dll from Java Hi, I did not include the file in the question previously, but I do include the NativeC.h that has all the functions declared. |
|
Nov 7 |
revised |
Exception in thread “main” java.lang.UnsatisfiedLinkError: Native.initiate(I)V while running native dll from Java added 1215 characters in body |
|
Nov 6 |
awarded | Student |
|
Nov 6 |
asked | Exception in thread “main” java.lang.UnsatisfiedLinkError: Native.initiate(I)V while running native dll from Java |