0
votes
2answers
64 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
Processing Javascript RegEx submatches
(.){1,}? is the same as (.*?)
That is not true!
(.){1,}? is the same as (.)+?, but the intention was probably (.+?)
(Of course, this should be a …
0
votes
How can I execute Javascript before a JSF <h:commandLink> action is performed?
If you want to execute something before the form is posted, for confirmation for example, try the form event onSubmit. Something like:
myform.onsubmit = function(){confirm("really …
0
votes
Can I pass a JavaScript variable to another browser window?
Putting code to the matter, you can do this from the parent window:
var thisIsAnObject = {foo:'bar'};
var w = window.open("http://example.com");
w.myVariable = thisIsAnObject;
…
1
vote
JavaScript’s document.write Inline Script Execution Order
You can force secuential execution by defining "onload" (or similar) events on the scripts and inject the next one in the event function.
It is not trivial, but there are plenty of examples out the …
0
votes
Passing in parameter from html element with jQuery.
The function bind() takes, takes the element as a parameter (in your case the span), so to get the id you want from it you should do some DOM traversal like:
function doSomething(ev …
4
votes
Get a handle on event listening in JavaScript
I did an "inspect element" on a link in that page with firebug, and in the DOM tab it says there is an onclick function (anonymous), and also some other function called "s_onclick_0".
I coa …
0
votes
0
votes
JavaScript Parent variables
If I am not mistaken, it looks like
geocoder.getLocations
will not return a value, but expect a callback function, in your case:
function(addresses …
0
votes
Compare two Arrays Javascript - Associative
I really don't know if there is a nicer way to do it than the brute force approach:
function differences(a, b){
var dif = {};
for(key in a){ //In a and not in b
if(!b[key]){ …
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.
…
1
vote
Transform string into image with JQuery
I'd do something like this
$("some-selector").each(function(){
$(this).html($(this).html().replace(/\[(http:.*?)\]/gi, function(str, p1){
return "<img src='"+p1+"' /& …
11
votes
Why there is no OFFICIAL JavaScript reference?
You can try with the official ECMAscript site,
http://www.ecmascript.org/
but the useful thing is actually the implementatio …
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.
…
0
votes
File Upload Size Using Simple Javasript
I don't think there is any way of doing that with plain JS from a web page.
With a browser extension maybe, but from a page javascript cannot access the filesystem for security reasons.
…
