0
votes
2answers
76 views
Make Firefox refresh after changing fragment from an iframe
My code is in an iframe from a different domain, and I want to trigger a page refresh on the parent after changing the fragment of the URL (also of the parent).
It happens on IE, but not on Firefo …
0
votes
How to get the file path from HTML input form in Firefox 3
This is an example that could work for you if what you need is not exactly the path, but a reference to the file working offline.
…
0
votes
JS/Flash - Drag anchor containing img vs Drag img w/out anchor - How to get the img inside the anchor?
If I understood correctly, you don't control the "origin" page at all and what gets to the destination (on an cross-domain iframe, no less!) is the URL of the A, not of the IMG inside the A.
…
0
votes
Knowing whether window.close() will show a security warning
Just a blind shot, but you can try removing the onunload event in the window, in case it is there.
…
1
vote
how can i get values from multiple forms and submit them?
you can add an onsubmit to that form, and then collect other values with javascript:
<input type="hidden" name="hidden1" id="hidden1" />
<input type="hidden" name="hidden2" …
0
votes
0
votes
Is it possible to populate a SELECT dropdown when clicking on it?
you can also cheat: onclick , substitute the options with one that just says "Loading..." and let it display normally. Then, when you have the correct data, you put it in the select and make it dis …
0
votes
Copying plain text from a WYSIWYGI to a normal textarea?
I don't know this "WYSIWYG", although I think I know what you mean. Could it be that when you apply it to a textarea, said textarea's value no longer holds the text? The text is probably in some pr …
1
vote
Replace some text from any HTML page before it is displayed
With an extension you can probably do it.
I don't remember exactly, but it may be possible that LiveHttpHeaders …
0
votes
Substitute to <iframe>??
Maybe <object> or <embed> or something like that. I think you can put an html there. But that would be sort of the same, i guess...
…
0
votes
Find Path of File to be Uploaded
Maybe you can with a browser extension. You con overcome lots of restrictions from XUL in Firefox
…
2
votes
[HTML/JavaScript]: If a function inside onClick() fails, do not submit
<input onClick="return onclickEvent(e)" width="98" height="31" type="image" src="images/join.gif" name="SubmitStudent" />
function onclickEvent(e){
return CheckCaptcha() && …
0
votes
Make Firefox refresh after changing fragment from an iframe
Well, this is what I finally did. Although it is not an optimal solution, at least it works:
I force a reload of the parent by passing a dummy parameter with a timestamp on it, like this:
…
0
votes
iframe (javascript) + correct url
You can change the address bar of the parent from inside the iFrame but, the browser will go to that address and you cannot prevent that. It is a security feature.
…
0
votes
