User Victor - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T13:53:05Zhttp://stackoverflow.com/feeds/user/14514http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1798290/no-array-filter-in-rhino/1798318#17983181Answer by Victor for No Array.filter() in Rhino?Victor2009-11-25T16:52:06Z2009-11-25T16:52:06Z<p>Is filter standard javascript? It is only in Mozilla since 1.8 (or so <a href="http://www.dannyg.com/ref/jsquickref.html" rel="nofollow">this reference</a> tells me)</p>
http://stackoverflow.com/questions/1796899/how-to-determine-x-path-of-an-element-in-javascript/1796914#17969140Answer by Victor for How to determine x-path of an element in Javascript?Victor2009-11-25T13:28:58Z2009-11-25T13:34:41Z<p>I think I know what you want now, and I guess you can see how <a href="https://addons.mozilla.org/en-US/firefox/addon/1192" rel="nofollow">xpather</a> does it, but I am afraid it will do it by going through the tree to the root...</p>
http://stackoverflow.com/questions/1796794/jquery-get-or-ajax-call-php-script-on-server-that-requires-2-parameters/1796815#17968153Answer by Victor for JQuery $.get or $.ajax call PHP script on server that requires 2 parametersVictor2009-11-25T13:10:01Z2009-11-25T13:22:54Z<p>you have to use a callback, or call it synchronously:</p>
<pre><code>$.get("exchangeRate.php", {exchangeFrom:"what",exchangeTo:"ever"},function(resp){
alert(resp);
//resp is what your page returns!
//find getRate in resp and use it here
});
</code></pre>
<p>to make things synchronous you need something like</p>
<pre><code>$.ajaxSetup({
async: false,
});
var getRate = null;
$.get("exchangeRate.php", {exchangeFrom:"what",exchangeTo:"ever"},function(resp){
alert(resp);
//resp is what your page returns!
//find getRate in resp
getRate = something;
});
//use getRate here
</code></pre>
<p>Also, I guess your PHP is right, with something like</p>
<pre><code> <?php
function exchangeRate($exchangeFrom, $exchangeTo){...}
echo exchangeRate($_GET["exchangeFrom"], $_GET["exchangeTo"]);
?>
</code></pre>
http://stackoverflow.com/questions/1789945/javascript-string-contains/1790364#17903642Answer by Victor for javascript : string contains ...Victor2009-11-24T14:17:23Z2009-11-24T14:17:23Z<p>Javascript is case sensitive</p>
<pre><code>indexOf()
</code></pre>
<p>not </p>
<pre><code>indexof()
</code></pre>
http://stackoverflow.com/questions/1708291/html-link-breaks/1708365#17083650Answer by Victor for html link breaksVictor2009-11-10T14:28:02Z2009-11-10T14:28:02Z<pre><code><span style="cursor:pointer;">
</code></pre>
http://stackoverflow.com/questions/1665829/javascript-regular-expression-remove-unwanted-commas/1666149#16661491Answer by Victor for JavaScript Regular Expression remove unwanted commasVictor2009-11-03T09:13:34Z2009-11-03T14:54:51Z<p>My take:</p>
<pre><code>var cleanStr = str.replace(/^[\s,]+/,"")
.replace(/[\s,]+$/,"")
.replace(/\s*,+\s*(,+\s*)*/g,",")
</code></pre>
<p>This one will work with <code>opera, internet explorer, whatever</code></p>
<p>Actually tested this last one, and it works!</p>
http://stackoverflow.com/questions/1667757/alert-box-running-first/1667784#16677842Answer by Victor for Alert Box Running First?Victor2009-11-03T14:46:14Z2009-11-03T14:46:14Z<p>This pause plugin says that it "holds everything in the queue" for the specified amount of time. It will not actually pause execution (there is no sleep in javascript).</p>
<p>So, this is exactly the expected thing, that the alert will show up first.</p>
http://stackoverflow.com/questions/1666219/no-resizable-in-popup-window-dont-work-in-firefox/1666295#16662950Answer by Victor for no resizable in popup window dont work in firefoxVictor2009-11-03T09:45:28Z2009-11-03T09:45:28Z<p>Another try:</p>
<p><a href="http://www.technipages.com/firefox-prevent-sites-from-disabling-window-resize.html" rel="nofollow">http://www.technipages.com/firefox-prevent-sites-from-disabling-window-resize.html</a></p>
<p>You can prevent it in firefox, do you have that on? I know I would.</p>
http://stackoverflow.com/questions/1666219/no-resizable-in-popup-window-dont-work-in-firefox/1666263#16662630Answer by Victor for no resizable in popup window dont work in firefoxVictor2009-11-03T09:37:40Z2009-11-03T09:37:40Z<p>Try without spaces, if you don't do that already:</p>
<pre><code>resizable=no
</code></pre>
http://stackoverflow.com/questions/1663242/calling-a-function-inside-an-iframe-from-outside-the-iframe/1663270#16632701Answer by Victor for Calling a function inside an iframe from outside the iframeVictor2009-11-02T19:46:51Z2009-11-02T19:46:51Z<p>If the iframe is in a different domain than the outer page, with great difficulty, or not at all.</p>
<p>In general, the browser prevents javascript from accessing code from a different domain, but if you control both pages, there are some hacks to make something work. More or less.</p>
<p>For example, you can change the fragment of the URL of the iFrame from the outer one, poll the fragment from inside the iframe and call that function. There is a similar trick with the name of the window.</p>
http://stackoverflow.com/questions/1663108/greasemonkey-storage/1663211#16632112Answer by Victor for Greasemonkey StorageVictor2009-11-02T19:36:15Z2009-11-02T19:42:29Z<p>GM stores it in properties. Open about:config and look for them.</p>
<p>According to <a href="http://diveintogreasemonkey.org/api/gm%5Fgetvalue.html" rel="nofollow">http://diveintogreasemonkey.org/api/gm_getvalue.html</a>, you can find them in the <code>greasemonkey.scriptvals</code> branch.</p>
<p>This <a href="http://www.sqlite.org/limits.html" rel="nofollow">sqlite info on its limits</a> shows some default limits for strings and blobs, but they may be changed by Firefox.</p>
http://stackoverflow.com/questions/1644523/overriding-attacklab-script-included-by-script-src/1645011#16450110Answer by Victor for Overriding Attacklab script included by script src=Victor2009-10-29T16:40:14Z2009-10-29T16:49:09Z<p>You can override it with a <a href="https://addons.mozilla.org/en-US/firefox/addon/748" rel="nofollow">Greasemonkey</a> script. Redefine that function. You can try first with Firebug, on the console.</p>
http://stackoverflow.com/questions/1642450/iframe-javascript-correct-url/1642495#16424950Answer by Victor for iframe (javascript) + correct urlVictor2009-10-29T09:22:19Z2009-10-29T09:22:19Z<p>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.</p>
http://stackoverflow.com/questions/1632455/make-firefox-refresh-after-changing-fragment-from-an-iframe0Make Firefox refresh after changing fragment from an iframeVictor2009-10-27T17:38:08Z2009-10-29T08:51:36Z
<p>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 Firefox. Is there any way of doing it without changing the outer document (polling e.g.)?</p>
<pre><code><a href="http://top.domain.com/#fragment" target="_top">click me</a>
</code></pre>
<p>In IE this works fine, the outer frame reloads after clicking this link. Not so in Firefox.</p>
<p>I have already tried with a <code>window.parent.location.reload(true)</code>, permission denied.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1632455/make-firefox-refresh-after-changing-fragment-from-an-iframe/1642366#16423660Answer by Victor for Make Firefox refresh after changing fragment from an iframeVictor2009-10-29T08:51:36Z2009-10-29T08:51:36Z<p>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:</p>
<pre><code><a href="http://top.dom.com/?dummy=13758#frag" target="_top" id="link">click</a>
</code></pre>
<p>Generated with something like:</p>
<pre><code>$("#link").attr("href", "http://top.dom.com/?d="+(new Date().getTime())+"#frag");
</code></pre>
<p>This is ugly as hell, but at least it works</p>
http://stackoverflow.com/questions/1638248/how-to-prevent-js-hijacking-in-public-computers/1638576#16385763Answer by Victor for how to prevent JS hijacking in public computersVictor2009-10-28T16:52:30Z2009-10-28T16:52:30Z<p>If the computer owner is against you....you will have a hard time. The browser guarantees certain security rules, but the computer owner can modify it to his evil heart's content and you would be none the wiser...</p>
http://stackoverflow.com/questions/1638344/jquery-two-columns-sortable-and-cookie/1638546#16385460Answer by Victor for jQuery - two columns - sortable and cookie?Victor2009-10-28T16:49:20Z2009-10-28T16:49:20Z<p>If you already use jQuery, take a look at the cookie plugin:</p>
<p><a href="http://plugins.jquery.com/project/cookie" rel="nofollow">http://plugins.jquery.com/project/cookie</a></p>
<p>I used it in a project, and it was very useful.</p>
<p>And of course, to see if it worked, you can use the cookie plugin for firebug, <a href="http://www.softwareishard.com/blog/firecookie/" rel="nofollow">Firecookie</a></p>
http://stackoverflow.com/questions/1637256/jquery-e-which-codes-for-ctrl-a-and-ctrl-e/1637264#16372640Answer by Victor for [jquery] e.which codes for CTRL + A and CTRL + EVictor2009-10-28T13:33:27Z2009-10-28T15:42:43Z<p>Is this helpful?</p>
<p><a href="http://www.scottklarr.com/topic/126/how-to-create-ctrl-key-shortcuts-in-javascript/" rel="nofollow">http://www.scottklarr.com/topic/126/how-to-create-ctrl-key-shortcuts-in-javascript/</a></p>
<p>If 'S' is 83, then A = 65, right? And E=69?</p>
http://stackoverflow.com/questions/1636783/using-ajax-to-send-get-to-php-file-after-change-to-input/1636797#16367971Answer by Victor for Using ajax to send GET to php file after change to inputVictor2009-10-28T11:53:41Z2009-10-28T12:04:03Z<p>I think this part in the onclick in the input</p>
<pre><code>update_program($i, $j, this.input.date.value)
</code></pre>
<p>should be</p>
<pre><code>update_program($i, $j, this.value)
</code></pre>
<p>Also, consider using <a href="http://docs.jquery.com/Ajax/jQuery.get#urldatacallbacktype" rel="nofollow">jQuery</a>, it makes ajax much easier. And everything else too :P</p>
<pre><code>function update_program(row, target, value) {
$.get('update.php', {row:row, target:target, nfv:value});
}
</code></pre>
<p>Also, you are using <code>time</code> and your parameter is <code>value</code> in the function, right?</p>
http://stackoverflow.com/questions/1636495/enabling-a-disabled-submital-image-with-javascript/1636517#16365170Answer by Victor for enabling a disabled submital image with javascriptVictor2009-10-28T10:53:33Z2009-10-28T11:09:05Z<p>Before setting the onclick function to null, we save the function in a property of the tag:</p>
<pre><code><a id="myLink" href="javascript:void(0)" onClick="submitComment('+[id]+'); this._onclick=this.onclick; this.onclick=null; return false;">
</code></pre>
<p>then if something goes wrong, we can just restore it:</p>
<pre><code>document.getElementById("myLink").onclick = document.getElementById("myLink")._onclick;
</code></pre>
http://stackoverflow.com/questions/1635992/html-javascript-if-a-function-inside-onclick-fails-do-not-submit/1636017#16360172Answer by Victor for [HTML/JavaScript]: If a function inside onClick() fails, do not submitVictor2009-10-28T09:10:20Z2009-10-28T09:10:20Z<pre><code><input onClick="return onclickEvent(e)" width="98" height="31" type="image" src="images/join.gif" name="SubmitStudent" />
function onclickEvent(e){
return CheckCaptcha() && CheckTermsAcceptance(document.getElementById('chkStudent'));
}
</code></pre>
<p>Or even </p>
<pre><code><input onClick="return CheckCaptcha() && CheckTermsAcceptance(document.getElementById('chkStudent'))" width="98" height="31" type="image" src="images/join.gif" name="SubmitStudent" />
</code></pre>
<p>Much better with jquery:</p>
<pre><code><input id="your-id" type="image" src="images/join.gif" name="SubmitStudent" width="98" height="31"/>
$("your-id").click(function(){
return CheckCaptcha() && CheckTermsAcceptance(document.getElementById('chkStudent'));
});
</code></pre>
http://stackoverflow.com/questions/1631624/find-path-of-file-to-be-uploaded/1631658#16316580Answer by Victor for Find Path of File to be UploadedVictor2009-10-27T15:34:18Z2009-10-27T15:34:18Z<p>Maybe you can with a browser extension. You con overcome lots of restrictions from XUL in Firefox</p>
http://stackoverflow.com/questions/1631493/ajax-not-firing-on-prototype-i-think-i-need-to-unset-or-remove-a-javascript-met/1631507#16315070Answer by Victor for Ajax not firing on prototype - I think I need to unset or remove a javascript method - causing havoc help!Victor2009-10-27T15:15:04Z2009-10-27T15:22:01Z<pre><code>delete obj.property
</code></pre>
<p>In this case:</p>
<pre><code>delete obj.toJSONSTring;
delete obj.parseJSONSTRING;
</code></pre>
http://stackoverflow.com/questions/1631467/need-help-modifying-javascript-snippet/1631499#16314991Answer by Victor for Need help modifying javascript snippetVictor2009-10-27T15:14:11Z2009-10-27T15:14:11Z<pre><code><script type="text/javascript">if(typeof(_gat)!="object")
document.write("<sc"+"ript src=\"http"+
(document.location.protocol=="https:"?"s://ssl":"://www")+
".google-analytics.com/ga.js\"></sc"+"ript>")</script>
</code></pre>
http://stackoverflow.com/questions/1630863/uniquely-identify-a-function-in-javascript/1630956#16309560Answer by Victor for Uniquely identify a function in JavaScriptVictor2009-10-27T13:53:28Z2009-10-27T13:59:01Z<p>I suspect that whatever you put in a property name (not a hash key, a property name) will be converted to string anyway. </p>
<p>This does not work either</p>
<pre><code>(function(){
var num = 1;
function somefunc() {
alert(num);
}
somefunc.blah = 1;
myfunctions[somefunc] = somefunc;
})();
(function(){
var num = 2;
function somefunc() {
alert(num);
}
somefunc.bloh = 1;
myfunctions[somefunc] = somefunc;
})();
</code></pre>
<p>I just did some <a href="http://books.google.com/books?id=2weL0iAfrEMC&pg=PA106&lpg=PA106&dq=javascript+create+property+tostring&source=bl&ots=%5F8%5FCsAT46G&sig=RSzLuaUOfE-Pw1pu-XTvl2eP4KU&hl=en&ei=OvzmSqCRMoTAmQORvumkCA&sa=X&oi=book%5Fresult&ct=result&resnum=10&ved=0CCYQ6AEwCQ#v=onepage&q=javascript%20create%20property%20tostring&f=false" rel="nofollow">reading</a>, and it seems like a property name can only be a string.</p>
http://stackoverflow.com/questions/1630649/js-vars-adding/1630662#16306622Answer by Victor for JS Vars - AddingVictor2009-10-27T13:04:12Z2009-10-27T13:04:12Z<p><code>new</code> is a reserved word, I'd use something else in any case.</p>
<p>And with a normal variable name of <code>c</code> it worked for me:</p>
<pre><code>var a = 10;
var b = 30
var c = a + b;
alert(c);
</code></pre>
<p>did the expected and alerted <code>40</code></p>
http://stackoverflow.com/questions/1630609/php-javascript-how-to-refresh-a-captcha/1630644#16306440Answer by Victor for [PHP/JavaScript]: How to refresh a Captcha?Victor2009-10-27T13:02:00Z2009-10-27T13:02:00Z<p>Isn't there some parameter with a timestamp or something, so that the request does not get cached? Why not substitute the src with something like (using jquery)</p>
<pre><code>$("img#your-selector").attr("src","ReturnCaptcha2.php?_="+((new Date()).getTime()));
</code></pre>
http://stackoverflow.com/questions/1630353/javascript-how-to-define-a-variable-as-object-type/1630376#16303762Answer by Victor for [JavaScript]: How to define a variable as object type?Victor2009-10-27T12:08:04Z2009-10-27T12:47:47Z<pre><code>function CheckTermsAcceptance(element){
try{
if (!element.checked){
alert("You need to accept the terms by checking the box.")
return false;
}
}catch(err){
alert(err.description);
}
}
</code></pre>
<p>and you call it like:</p>
<pre><code>CheckTermsAcceptance(document.getElementById('chkStudent'));
</code></pre>
<p>is that it?</p>
http://stackoverflow.com/questions/1629918/are-named-functions-underrated-in-javascript/1630119#16301190Answer by Victor for Are named functions underrated in JavaScript?Victor2009-10-27T11:12:16Z2009-10-27T11:12:16Z<p>But for me anonymous functions are more readable in the source code, because I am sure they are only used there.</p>
http://stackoverflow.com/questions/1629897/substitute-to-iframe/1629941#16299410Answer by Victor for Substitute to <iframe>??Victor2009-10-27T10:33:34Z2009-10-27T10:33:34Z<p>Maybe <code><object></code> or <code><embed></code> or something like that. I think you can put an html there. But that would be sort of the same, i guess...</p>
http://stackoverflow.com/questions/1796794/jquery-get-or-ajax-call-php-script-on-server-that-requires-2-parameters/1796819#1796819Comment by Victor on JQuery $.get or $.ajax call PHP script on server that requires 2 parametersVictor2009-11-25T13:25:03Z2009-11-25T13:25:03ZI don't think he wants getRate to be the XMLHttpRequest object returned by <code>$.get</code>...http://stackoverflow.com/questions/1691170/show-div-depending-on-select-option/1690971#1690971Comment by Victor on show div depending on select optionVictor2009-11-06T22:39:25Z2009-11-06T22:39:25ZBe very very careful with change events. They behave differently in IE and Firefox (IE waits till blur to fire it). For sure in radiobuttons and checkboxes, don't know if also for selects.http://stackoverflow.com/questions/1665829/javascript-regular-expression-remove-unwanted-commas/1666149#1666149Comment by Victor on JavaScript Regular Expression remove unwanted commasVictor2009-11-03T14:51:49Z2009-11-03T14:51:49ZOf course I try to be clever, that's what regex are for! XD But, you are right: Let's try again. And also it would not catch "a , b"! What a disasterhttp://stackoverflow.com/questions/1665829/javascript-regular-expression-remove-unwanted-commas/1666149#1666149Comment by Victor on JavaScript Regular Expression remove unwanted commasVictor2009-11-03T13:42:05Z2009-11-03T13:42:05ZCool, thanks for the feedbackhttp://stackoverflow.com/questions/1666219/no-resizable-in-popup-window-dont-work-in-firefox/1666295#1666295Comment by Victor on no resizable in popup window dont work in firefoxVictor2009-11-03T10:01:48Z2009-11-03T10:01:48ZWell, for me it's a feature, as i said :) Anyway, thanks for the infohttp://stackoverflow.com/questions/1665829/javascript-regular-expression-remove-unwanted-commas/1666149#1666149Comment by Victor on JavaScript Regular Expression remove unwanted commasVictor2009-11-03T09:56:12Z2009-11-03T09:56:12ZWell, they were a bit ugly, is that better? http://stackoverflow.com/questions/1665829/javascript-regular-expression-remove-unwanted-commas/1666149#1666149Comment by Victor on JavaScript Regular Expression remove unwanted commasVictor2009-11-03T09:26:29Z2009-11-03T09:26:29ZWhy the downvote? What is so wrong with my regexes?http://stackoverflow.com/questions/1663297/using-regular-expression-if-and-else-conflict-with-test-functionComment by Victor on Using regular expression ,if and else conflict with .test() function.Victor2009-11-02T20:14:04Z2009-11-02T20:14:04ZNo if best s a regular expressionhttp://stackoverflow.com/questions/1662092/jquery-find-next-table-rowComment by Victor on jQuery: find next table-rowVictor2009-11-02T15:53:40Z2009-11-02T15:53:40ZWell, what is the html for the img's parent? does it have an id?http://stackoverflow.com/questions/1644523/overriding-attacklab-script-included-by-script-src/1645011#1645011Comment by Victor on Overriding Attacklab script included by script src=Victor2009-10-30T14:43:53Z2009-10-30T14:43:53ZBut with GM you can run the script in your answer automatically, no? Shouldn't it work?http://stackoverflow.com/questions/1638877/difference-between-onmouseover-and-onmouseenter/1638904#1638904Comment by Victor on Difference between onMouseOver and onMouseEnterVictor2009-10-28T17:54:27Z2009-10-28T17:54:27Z+1 for the quirksmode link, but mouseenter is IE only...http://stackoverflow.com/questions/1637256/jquery-e-which-codes-for-ctrl-a-and-ctrl-e/1637264#1637264Comment by Victor on [jquery] e.which codes for CTRL + A and CTRL + EVictor2009-10-28T15:43:18Z2009-10-28T15:43:18ZAh... yes, I can't counthttp://stackoverflow.com/questions/1637256/jquery-e-which-codes-for-ctrl-a-and-ctrl-e/1637264#1637264Comment by Victor on [jquery] e.which codes for CTRL + A and CTRL + EVictor2009-10-28T13:39:50Z2009-10-28T13:39:50ZE=68, seems like I can't count :Phttp://stackoverflow.com/questions/1636495/enabling-a-disabled-submital-image-with-javascript/1636517#1636517Comment by Victor on enabling a disabled submital image with javascriptVictor2009-10-28T11:11:22Z2009-10-28T11:11:22ZI have edited the answer, trying to be more clear.http://stackoverflow.com/questions/1636073/stop-web-pages-from-disabling-shortcuts-in-internet-explorer/1636080#1636080Comment by Victor on Stop web pages from disabling shortcuts in Internet ExplorerVictor2009-10-28T10:51:27Z2009-10-28T10:51:27ZAnd images, to prevent XSRF attacks, you can never be too safe!