User Victor - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T13:53:05Z http://stackoverflow.com/feeds/user/14514 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1798290/no-array-filter-in-rhino/1798318#1798318 1 Answer by Victor for No Array.filter() in Rhino? Victor 2009-11-25T16:52:06Z 2009-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#1796914 0 Answer by Victor for How to determine x-path of an element in Javascript? Victor 2009-11-25T13:28:58Z 2009-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#1796815 3 Answer by Victor for JQuery $.get or $.ajax call PHP script on server that requires 2 parameters Victor 2009-11-25T13:10:01Z 2009-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> &lt;?php function exchangeRate($exchangeFrom, $exchangeTo){...} echo exchangeRate($_GET["exchangeFrom"], $_GET["exchangeTo"]); ?&gt; </code></pre> http://stackoverflow.com/questions/1789945/javascript-string-contains/1790364#1790364 2 Answer by Victor for javascript : string contains ... Victor 2009-11-24T14:17:23Z 2009-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#1708365 0 Answer by Victor for html link breaks Victor 2009-11-10T14:28:02Z 2009-11-10T14:28:02Z <pre><code>&lt;span style="cursor:pointer;"&gt; </code></pre> http://stackoverflow.com/questions/1665829/javascript-regular-expression-remove-unwanted-commas/1666149#1666149 1 Answer by Victor for JavaScript Regular Expression remove unwanted commas Victor 2009-11-03T09:13:34Z 2009-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#1667784 2 Answer by Victor for Alert Box Running First? Victor 2009-11-03T14:46:14Z 2009-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#1666295 0 Answer by Victor for no resizable in popup window dont work in firefox Victor 2009-11-03T09:45:28Z 2009-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#1666263 0 Answer by Victor for no resizable in popup window dont work in firefox Victor 2009-11-03T09:37:40Z 2009-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#1663270 1 Answer by Victor for Calling a function inside an iframe from outside the iframe Victor 2009-11-02T19:46:51Z 2009-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#1663211 2 Answer by Victor for Greasemonkey Storage Victor 2009-11-02T19:36:15Z 2009-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#1645011 0 Answer by Victor for Overriding Attacklab script included by script src= Victor 2009-10-29T16:40:14Z 2009-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#1642495 0 Answer by Victor for iframe (javascript) + correct url Victor 2009-10-29T09:22:19Z 2009-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-iframe 0 Make Firefox refresh after changing fragment from an iframe Victor 2009-10-27T17:38:08Z 2009-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>&lt;a href="http://top.domain.com/#fragment" target="_top"&gt;click me&lt;/a&gt; </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#1642366 0 Answer by Victor for Make Firefox refresh after changing fragment from an iframe Victor 2009-10-29T08:51:36Z 2009-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>&lt;a href="http://top.dom.com/?dummy=13758#frag" target="_top" id="link"&gt;click&lt;/a&gt; </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#1638576 3 Answer by Victor for how to prevent JS hijacking in public computers Victor 2009-10-28T16:52:30Z 2009-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#1638546 0 Answer by Victor for jQuery - two columns - sortable and cookie? Victor 2009-10-28T16:49:20Z 2009-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#1637264 0 Answer by Victor for [jquery] e.which codes for CTRL + A and CTRL + E Victor 2009-10-28T13:33:27Z 2009-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#1636797 1 Answer by Victor for Using ajax to send GET to php file after change to input Victor 2009-10-28T11:53:41Z 2009-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#1636517 0 Answer by Victor for enabling a disabled submital image with javascript Victor 2009-10-28T10:53:33Z 2009-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>&lt;a id="myLink" href="javascript:void(0)" onClick="submitComment('+[id]+'); this._onclick=this.onclick; this.onclick=null; return false;"&gt; </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#1636017 2 Answer by Victor for [HTML/JavaScript]: If a function inside onClick() fails, do not submit Victor 2009-10-28T09:10:20Z 2009-10-28T09:10:20Z <pre><code>&lt;input onClick="return onclickEvent(e)" width="98" height="31" type="image" src="images/join.gif" name="SubmitStudent" /&gt; function onclickEvent(e){ return CheckCaptcha() &amp;&amp; CheckTermsAcceptance(document.getElementById('chkStudent')); } </code></pre> <p>Or even </p> <pre><code>&lt;input onClick="return CheckCaptcha() &amp;&amp; CheckTermsAcceptance(document.getElementById('chkStudent'))" width="98" height="31" type="image" src="images/join.gif" name="SubmitStudent" /&gt; </code></pre> <p>Much better with jquery:</p> <pre><code>&lt;input id="your-id" type="image" src="images/join.gif" name="SubmitStudent" width="98" height="31"/&gt; $("your-id").click(function(){ return CheckCaptcha() &amp;&amp; CheckTermsAcceptance(document.getElementById('chkStudent')); }); </code></pre> http://stackoverflow.com/questions/1631624/find-path-of-file-to-be-uploaded/1631658#1631658 0 Answer by Victor for Find Path of File to be Uploaded Victor 2009-10-27T15:34:18Z 2009-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#1631507 0 Answer by Victor for Ajax not firing on prototype - I think I need to unset or remove a javascript method - causing havoc help! Victor 2009-10-27T15:15:04Z 2009-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#1631499 1 Answer by Victor for Need help modifying javascript snippet Victor 2009-10-27T15:14:11Z 2009-10-27T15:14:11Z <pre><code>&lt;script type="text/javascript"&gt;if(typeof(_gat)!="object") document.write("&lt;sc"+"ript src=\"http"+ (document.location.protocol=="https:"?"s://ssl":"://www")+ ".google-analytics.com/ga.js\"&gt;&lt;/sc"+"ript&gt;")&lt;/script&gt; </code></pre> http://stackoverflow.com/questions/1630863/uniquely-identify-a-function-in-javascript/1630956#1630956 0 Answer by Victor for Uniquely identify a function in JavaScript Victor 2009-10-27T13:53:28Z 2009-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&amp;pg=PA106&amp;lpg=PA106&amp;dq=javascript+create+property+tostring&amp;source=bl&amp;ots=%5F8%5FCsAT46G&amp;sig=RSzLuaUOfE-Pw1pu-XTvl2eP4KU&amp;hl=en&amp;ei=OvzmSqCRMoTAmQORvumkCA&amp;sa=X&amp;oi=book%5Fresult&amp;ct=result&amp;resnum=10&amp;ved=0CCYQ6AEwCQ#v=onepage&amp;q=javascript%20create%20property%20tostring&amp;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#1630662 2 Answer by Victor for JS Vars - Adding Victor 2009-10-27T13:04:12Z 2009-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#1630644 0 Answer by Victor for [PHP/JavaScript]: How to refresh a Captcha? Victor 2009-10-27T13:02:00Z 2009-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#1630376 2 Answer by Victor for [JavaScript]: How to define a variable as object type? Victor 2009-10-27T12:08:04Z 2009-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#1630119 0 Answer by Victor for Are named functions underrated in JavaScript? Victor 2009-10-27T11:12:16Z 2009-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#1629941 0 Answer by Victor for Substitute to <iframe>?? Victor 2009-10-27T10:33:34Z 2009-10-27T10:33:34Z <p>Maybe <code>&lt;object&gt;</code> or <code>&lt;embed&gt;</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#1796819 Comment by Victor on JQuery $.get or $.ajax call PHP script on server that requires 2 parameters Victor 2009-11-25T13:25:03Z 2009-11-25T13:25:03Z I 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#1690971 Comment by Victor on show div depending on select option Victor 2009-11-06T22:39:25Z 2009-11-06T22:39:25Z Be 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#1666149 Comment by Victor on JavaScript Regular Expression remove unwanted commas Victor 2009-11-03T14:51:49Z 2009-11-03T14:51:49Z Of 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 &quot;a , b&quot;! What a disaster http://stackoverflow.com/questions/1665829/javascript-regular-expression-remove-unwanted-commas/1666149#1666149 Comment by Victor on JavaScript Regular Expression remove unwanted commas Victor 2009-11-03T13:42:05Z 2009-11-03T13:42:05Z Cool, thanks for the feedback http://stackoverflow.com/questions/1666219/no-resizable-in-popup-window-dont-work-in-firefox/1666295#1666295 Comment by Victor on no resizable in popup window dont work in firefox Victor 2009-11-03T10:01:48Z 2009-11-03T10:01:48Z Well, for me it's a feature, as i said :) Anyway, thanks for the info http://stackoverflow.com/questions/1665829/javascript-regular-expression-remove-unwanted-commas/1666149#1666149 Comment by Victor on JavaScript Regular Expression remove unwanted commas Victor 2009-11-03T09:56:12Z 2009-11-03T09:56:12Z Well, they were a bit ugly, is that better? http://stackoverflow.com/questions/1665829/javascript-regular-expression-remove-unwanted-commas/1666149#1666149 Comment by Victor on JavaScript Regular Expression remove unwanted commas Victor 2009-11-03T09:26:29Z 2009-11-03T09:26:29Z Why the downvote? What is so wrong with my regexes? http://stackoverflow.com/questions/1663297/using-regular-expression-if-and-else-conflict-with-test-function Comment by Victor on Using regular expression ,if and else conflict with .test() function. Victor 2009-11-02T20:14:04Z 2009-11-02T20:14:04Z No if best s a regular expression http://stackoverflow.com/questions/1662092/jquery-find-next-table-row Comment by Victor on jQuery: find next table-row Victor 2009-11-02T15:53:40Z 2009-11-02T15:53:40Z Well, 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#1645011 Comment by Victor on Overriding Attacklab script included by script src= Victor 2009-10-30T14:43:53Z 2009-10-30T14:43:53Z But 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#1638904 Comment by Victor on Difference between onMouseOver and onMouseEnter Victor 2009-10-28T17:54:27Z 2009-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#1637264 Comment by Victor on [jquery] e.which codes for CTRL + A and CTRL + E Victor 2009-10-28T15:43:18Z 2009-10-28T15:43:18Z Ah... yes, I can't count http://stackoverflow.com/questions/1637256/jquery-e-which-codes-for-ctrl-a-and-ctrl-e/1637264#1637264 Comment by Victor on [jquery] e.which codes for CTRL + A and CTRL + E Victor 2009-10-28T13:39:50Z 2009-10-28T13:39:50Z E=68, seems like I can't count :P http://stackoverflow.com/questions/1636495/enabling-a-disabled-submital-image-with-javascript/1636517#1636517 Comment by Victor on enabling a disabled submital image with javascript Victor 2009-10-28T11:11:22Z 2009-10-28T11:11:22Z I have edited the answer, trying to be more clear. http://stackoverflow.com/questions/1636073/stop-web-pages-from-disabling-shortcuts-in-internet-explorer/1636080#1636080 Comment by Victor on Stop web pages from disabling shortcuts in Internet Explorer Victor 2009-10-28T10:51:27Z 2009-10-28T10:51:27Z And images, to prevent XSRF attacks, you can never be too safe!