User Pim Jager - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T16:51:11Z http://stackoverflow.com/feeds/user/35197 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/350308/how-to-know-if-a-page-is-currently-being-read-by-the-user-with-javascript/350343#350343 3 Answer by Pim Jager for How to know if a page is currently being read by the user with Javascript? Pim Jager 2008-12-08T18:13:28Z 2009-12-03T23:41:32Z <p>Your best solution would be something like this:</p> <pre><code> var inactiveTimer; var active = true; function setTimer(){ inactiveTimer = setTimeOut("stopAjaxUpdateFunction()", 120000); //120 seconds } setTimer(); document.onmouseover = function() { clearTimeout ( inactiveTimer ); setTimer(); resumeAjaxUpdate(); }; //clear the timer and reset it. function stopAjaxUpdateFunction(){ //Turn off AJAX update active = false; } function resumeAjaxUpdate(){ if(active == false){ //Turn on AJAX update active = true; }else{ //do nothing since we are still active and the AJAX update is still on. } } </code></pre> <p>The stopAjaxUpdateFunction should stop the AJAX update progress.</p> http://stackoverflow.com/questions/1815021/programmatically-open-view-source-html-window-in-browser-with-javascript/1815227#1815227 4 Answer by Pim Jager for Programmatically open "View Source" HTML Window in Browser with Javascript? Pim Jager 2009-11-29T10:50:12Z 2009-11-30T00:24:17Z <p>You could use this script, we simply grab the innerHTML of the html tag, reappend that, and paste that in a popup.</p> <pre><code>function showSource(){; var source = "&lt;html&gt;"; source += document.getElementsByTagName('html')[0].innerHTML; source += "&lt;/html&gt;"; //now we need to escape the html special chars, javascript has escape //but this does not do what we want source = source.replace(/&lt;/g, "&amp;lt;").replace(/&gt;/g, "&amp;gt;"); //now we add &lt;pre&gt; tags to preserve whitespace source = "&lt;pre&gt;"+source+"&lt;/pre&gt;"; //now open the window and set the source as the content sourceWindow = window.open('','Source of page','height=800,width=800,scrollbars=1,resizable=1'); sourceWindow.document.write(source); sourceWindow.document.close(); //close the document for writing, not the window //give source window focus if(window.focus) sourceWindow.focus(); } </code></pre> <p>This will not completely show the source as it will not show anything outside the HTML tags, or any properties inside the html tag, but it should be close enough, and works cross-browser.</p> <p>The advantage of this solution over the view-source: solution is that it will also work in internet-explorer 6> on windows XP SP2, that's pretty much it. If none of your audience is in this group, go with the view-source option, its way simpler.</p> http://stackoverflow.com/questions/1812193/change-text-color-on-change-of-selection-in-dropdown-list/1812206#1812206 1 Answer by Pim Jager for change text color on change of selection in dropdown list Pim Jager 2009-11-28T10:38:18Z 2009-11-28T10:38:18Z <p>This is really easy using jQuery (or most of the library's)</p> <pre><code>$('#color').change(function(){ $('#create form .text').css('color', $(this).val()); }); </code></pre> <p>I think the code is pretty self explaining</p> <p><B>EDIT</B><br> Just noticed some of your values are not real colors, you could use a switch for these cases, or decide to give them a value with the css color name: <a href="http://www.w3schools.com/css/css%5Fcolornames.asp" rel="nofollow">http://www.w3schools.com/css/css%5Fcolornames.asp</a></p> http://stackoverflow.com/questions/1799184/how-to-add-array-element-values-with-javascript/1799199#1799199 1 Answer by Pim Jager for how to add array element values with javascript ? Pim Jager 2009-11-25T18:58:09Z 2009-11-25T18:58:09Z <p>Make sure your array contains numbers and not string values. You can convert strings to numbers using parseInt(number, base)</p> <pre><code>var total = 0; for(i=0; i&lt;myArray.length; i++){ var number = parseInt(myArray[i], 10); total += number; } </code></pre> http://stackoverflow.com/questions/311504/long-pages-in-firefox-offset-when-scrollbar-appears/311514#311514 7 Answer by Pim Jager for Long pages in FireFox offset when scrollbar appears Pim Jager 2008-11-22T16:51:15Z 2009-11-14T07:55:29Z <p>You could simply always enable the crollbar:</p> <pre><code>html{ overflow: scroll; } </code></pre> <p>but that would give you the horizontal scrollbar too, this is better:</p> <pre><code>html{ overflow-y:scroll; overflow-x:auto; } </code></pre> <p>That will give you only the vertical scroll and the horizontal when needed.</p> http://stackoverflow.com/questions/1713402/which-one-i-have-to-follow-for-w3-validation/1713756#1713756 0 Answer by Pim Jager for Which one I have to follow for W3 Validation? Pim Jager 2009-11-11T08:11:36Z 2009-11-11T08:11:36Z <p>I'd personally say:</p> <blockquote> <p>HTML 4.01 Strict<br> CSS 2.1</p> </blockquote> <p>This is because I (and many others) feel XHTML is flawwed which is why W3C is stopping development of the XHTML2 stanrd in favor of HTML5 (which you won't be using in another couple of years because of lack in browser support)</p> <p>Also another problem of XHTML is that it should be send with a MIME type of application/xhtml+xml however internet explorer 6 (maybe 7 and 8 too, not sure) do not render the page when it send as application/xhtml+xml, so you'll either need to send text/html for ie and text/html+xml for other browser, or use the wrong mime type completely. </p> <p><a href="http://www.w3.org/News/2009#item119" rel="nofollow">http://www.w3.org/News/2009#item119</a> - W3C stops development of XHTML2</p> <p><a href="http://hixie.ch/advocacy/xhtml" rel="nofollow">http://hixie.ch/advocacy/xhtml</a> - Lengthy article about XHTML by Ian Hickson (creator of Acid2 and Acid3 test and member of WHATWG)</p> http://stackoverflow.com/questions/1713542/php-javascript-how-to-combine-2-page-in-one/1713665#1713665 1 Answer by Pim Jager for PHP/JavaScript How to combine 2 page in one Pim Jager 2009-11-11T07:44:25Z 2009-11-11T07:44:25Z <p>I think what your looking for is something like <a href="http://orangoo.com/labs/GreyBox/" rel="nofollow">Greybox</a>? </p> <p>It opens a new pag ontop of the page, instead of opening a popup, you best check out the examples, they will be way more clear than anything I can say here.</p> http://stackoverflow.com/questions/1676583/executing-a-function-by-name-passing-an-object-as-a-parameter/1676616#1676616 4 Answer by Pim Jager for Executing a function by name, passing an object as a parameter Pim Jager 2009-11-04T21:03:51Z 2009-11-04T21:08:53Z <p>Never use eval, it´s evil (see only one letter difference) You can simply do:</p> <pre><code>var div = document.getElementById('myDiv'); var result = window[function_name](div); </code></pre> <p>This is possible because functions are first class objects in javascript, so you can acces them as you could with anyother variable. Note that this will also work for functions that want strings or anything as paramter:</p> <pre><code>var result = window[another_function_name]("string1", [1, "an array"]); </code></pre> http://stackoverflow.com/questions/1658994/php-create-array-of-arrays-ignoring-empty-arrays/1659007#1659007 0 Answer by Pim Jager for PHP: Create array of arrays, ignoring empty arrays Pim Jager 2009-11-02T01:16:37Z 2009-11-02T01:16:37Z <p>You could use the following function:</p> <pre><code>function joinArrays(){ $arrays = func_get_args(); $output = array(); foreach($arrays as $array){ if(!empty($array)) array_push($output, $array); } return $output; } </code></pre> <p>call like: joinArrays($a, $b, $c, etc..);</p> http://stackoverflow.com/questions/455800/does-php-feature-short-hand-syntax-for-objects 0 Does PHP feature short hand syntax for objects? Pim Jager 2009-01-18T20:07:00Z 2009-10-29T19:50:23Z <p>In javascript you can easily create objects and Arrays like so:</p> <pre><code>var aObject = { foo:'bla', bar:2 }; var anArray = ['foo', 'bar', 2]; </code></pre> <p>Are simialar things possible in PHP?<br /> I know that you can easily create an array using the array function, that hardly is more work then the javascript syntax, but is there a similar syntax for creating objects? Or should I just use associative arrays?</p> <pre><code>$anArray = array('foo', 'bar', 2); $anObjectLikeAssociativeArray = array('foo'=&gt;'bla', 'bar'=&gt;2); </code></pre> <p>So to summarize:<br /> Does PHP have javascript like object creation or should I just use associative arrays?</p> http://stackoverflow.com/questions/1597364/excel-and-ie7-prevent-ie-from-opening-excel-files/1597425#1597425 2 Answer by Pim Jager for Excel and IE7 - Prevent IE from opening Excel files Pim Jager 2009-10-20T21:27:39Z 2009-10-20T21:27:39Z <p>Or in PHP you would do this:</p> <pre><code> //send headers that should force download header('Content-Type: application/vnd.ms-excel'); header('Content-Disposition: attachment; filename="downloaded.pdf"'); // and output the file: readfile('file.xls'); </code></pre> http://stackoverflow.com/questions/1560827/php-simplexml-check-if-a-child-exist/1560900#1560900 1 Answer by Pim Jager for php SimpleXML check if a child exist Pim Jager 2009-10-13T15:17:17Z 2009-10-13T15:17:17Z <pre><code>if($A-&gt;b-&gt;c != null) //c exists </code></pre> <p>if C does not exists it's value will be null (or more precise, it will have no value) note however that for this to work both A and b need to not be null (otherwise php will throw an error (I think, not quite sure))</p> http://stackoverflow.com/questions/1560852/php-ternary-operator-short-if-statement-help/1560882#1560882 3 Answer by Pim Jager for PHP ternary operator (short if statement) help Pim Jager 2009-10-13T15:14:03Z 2009-10-13T15:14:03Z <p>Also, for what it's worth, I have never read anywhere that shorthand is faster then simply wrinting if/else, also, this is widely considered less readable in most cases (not all!).</p> <p>You should run a profiler and see where the real bottlenecks are, even if tenerary is faster I highly doubt it will make much of a difference. </p> http://stackoverflow.com/questions/1550464/randomly-change-div-background-image-on-page-load/1550494#1550494 0 Answer by Pim Jager for randomly change div background image on page load Pim Jager 2009-10-11T11:36:09Z 2009-10-11T12:11:54Z <p>The problem is that you are searching for a div with the class lacarte in your code, but you need to search for a div with the id lacarte, like this: $('#lacarte') instead of $('div.lacarte')</p> <p>(Note how jQuery uses CSS selectors)</p> <p><b>Edit</b> in response to your comment<br /> You next problem is that the images do not exist, if you change te selector as i said, the code runs, but the images do not exist in <a href="http://www.mesondedeus.com/images/" rel="nofollow">http://www.mesondedeus.com/images/</a>. Try it yourself, try loading <a href="http://www.mesondedeus.com/images/img-restaurante-3.jpg" rel="nofollow">http://www.mesondedeus.com/images/img-restaurante-3.jpg</a> (as the script will try) and note how it doesn't load. You should make sure you have your images in the right directory.</p> http://stackoverflow.com/questions/1550150/how-to-limited-click-button-only-once-per-minute-in-javascript/1550182#1550182 2 Answer by Pim Jager for How to limited 'click' button only once per minute in Javascript Pim Jager 2009-10-11T08:27:18Z 2009-10-11T09:55:46Z <p>To do this pure javascript, you can simply capture the click event, disable the button and enable it again after a timeout, the below code is using jQuery and assuming your button has an id 'button' (&lt;button id="button"&gt;Click!&lt;/button&gt; or if it is an input: &lt;input type='button' id="button"&gt;Click!&lt;/input&gt;)</p> <pre><code>&lt;script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js'&gt;&lt;/script&gt; &lt;script type='text/javascript'&gt; $('#button').click( function(){ $(this).attr('disabled', 'disabled'); setTimeout(enableButton, 1000); return true; //make sure default click event happens }); var enableButton = function(){ $('#button').removeAttr('disabled'); } &lt;/script&gt; </code></pre> <p>You say the progress is quite heavy, note that even though people can not press the button more then once a minute (if they have javascript enabled that is) they can still disable javascript and press the button as much as they want, or call the url directly as many times as they feel like.</p> <p><b>EDIT</b> Added full HTML to script</p> http://stackoverflow.com/questions/1519932/form-redirection-using-jquery/1519953#1519953 2 Answer by Pim Jager for Form redirection using JQuery Pim Jager 2009-10-05T13:01:05Z 2009-10-05T13:01:05Z <p>You can identify the form using the action property:</p> <pre><code> $(document).ready(function(){ $("form[action='http://somesite.com']").attr("action", "http://www.example.com"); }): </code></pre> http://stackoverflow.com/questions/1516662/detect-when-link-is-clicked-open-in-new-frame/1516722#1516722 1 Answer by Pim Jager for Detect when link is clicked, open in new frame Pim Jager 2009-10-04T15:52:46Z 2009-10-04T15:52:46Z <p>I don't think I really understand what you mean. Usually url rewrite works like this:<br /> User clicks on <a href="http://example.com/content/example" rel="nofollow">http://example.com/content/example</a><br /> Which is the rewritten to <a href="http://example.com/index.php?cat=content&amp;page=example" rel="nofollow">http://example.com/index.php?cat=content&amp;page=example</a></p> <p>You can somewhat fake this effect by making your links into <a href="http://example.com/index.php/content/example" rel="nofollow">http://example.com/index.php/content/example</a> the webserver will still request the page index.php, in which you can then read the part after index.php (but before a query string) with</p> <pre><code>$_SERVER['PATH_INFO'] </code></pre> <p>and then parse that to get what you need.</p> <p>PHP.net on $_SERVER['PATH_INFO']</p> <blockquote> <p>Contains any client-provided pathname information trailing the actual script filename but preceding the query string, if available. For instance, if the current script was accessed via the URL <a href="http://www.example.com/php/path%5Finfo.php/some/stuff?foo=bar" rel="nofollow">http://www.example.com/php/path%5Finfo.php/some/stuff?foo=bar</a>, then $_SERVER['PATH_INFO'] would contain /some/stuff.</p> </blockquote> http://stackoverflow.com/questions/1453782/copying-contents-of-an-element/1453825#1453825 0 Answer by Pim Jager for copying contents of an element Pim Jager 2009-09-21T10:25:03Z 2009-09-21T10:25:03Z <p>The best way to do this cross browser is using a flash plugin, for example the system found here± <a href="http://www.biglickmedia.com/misc/scripts/copy-paste.php" rel="nofollow">http://www.biglickmedia.com/misc/scripts/copy-paste.php</a></p> <p>Note that this still doesn't work in all browsers (i.e. Chrome)</p> http://stackoverflow.com/questions/1451554/is-it-correct-that-page-elements-created-by-jquery-do-not-show-up-in-the-source-c/1451564#1451564 2 Answer by Pim Jager for Is it correct that page elements created by jQuery do not show up in the source code Pim Jager 2009-09-20T17:49:22Z 2009-09-20T17:49:22Z <p>Yes, this is correct.</p> <p>In firefox you can see the latest source by selecting everything on the page (ctrl+a) and then using rightmouse+view selection source. Or even better, you should install firebug.</p> http://stackoverflow.com/questions/1447878/how-to-alter-the-html-of-the-value-attribute-for-an-input-box/1448194#1448194 0 Answer by Pim Jager for How to alter the HTML of the value attribute for an input box? Pim Jager 2009-09-19T08:56:27Z 2009-09-19T08:56:27Z <p>How about not saving the actual HTML, but saving the attributes?</p> <pre><code>var attr = { 'value' : $('#rate').val(), 'type' : $('#rate').attr('type') } //later on in the code or something: var inp = $('&lt;input /&gt;').attr('id', 'rate').attr(attr); </code></pre> http://stackoverflow.com/questions/1418067/getjson-not-being-recognized-as-an-array/1418095#1418095 3 Answer by Pim Jager for $getJSON not being recognized as an array Pim Jager 2009-09-13T16:12:54Z 2009-09-13T16:12:54Z <p>In reply to your comment to Mauris's answers:<br /> use this in your object of parameters you want to send:</p> <pre><code>"calendarid[]": calendarIds // </code></pre> <p>instead of:</p> <pre><code> calendarid = calendarIds </code></pre> http://stackoverflow.com/questions/1417735/how-do-i-create-a-todo-list-for-my-web-users-to-tick-off/1417766#1417766 4 Answer by Pim Jager for How do I create a "todo" list for my web users to tick off? Pim Jager 2009-09-13T13:38:42Z 2009-09-13T13:51:02Z <p>Hey Tim,</p> <p>If you want to create this yourself you should learn PHP and MySQL (and possibly Javascript (for AJAX)), and HTML and CSS (maybe you already know some of these). After you know these it will become clear how to create this.</p> <p>You should first learn HTML<br /> then PHP<br /> then MySQL (or any SQL that works with PHP)<br /> then CSS<br /> Then Javascript</p> <p>We can't really answer your question like this, because it involves big amounts of code. Adn won't really help you if you don't know these languages.</p> http://stackoverflow.com/questions/1402505/in-php-can-you-instantiate-an-object-and-call-a-method-on-the-same-line/1402506#1402506 8 Answer by Pim Jager for In PHP, can you instantiate an object and call a method on the same line? Pim Jager 2009-09-09T22:38:28Z 2009-09-09T22:43:53Z <p>No, this is not possible.<br /> You need to assign the instance to a variable before you can call any of it's methods.</p> <p>If you really wan't to do this you could use a factory as ropstah suggests:</p> <pre><code>class objFactory{ public static function newObj(){ return new Obj(); } } objFacotry::newObj()-&gt;method(); </code></pre> http://stackoverflow.com/questions/1385972/how-to-achieve-the-following-ajax/1386060#1386060 0 Answer by Pim Jager for how to achieve the following ajax Pim Jager 2009-09-06T16:29:40Z 2009-09-06T16:34:45Z <p>The easiest way is using <a href="http://jquery.com" rel="nofollow">Jquery</a>. For example you could do something like this. </p> <pre><code>$('#dropdown').change(function(){ //listen for the change event of #dropdown box $.get('example.com/script.php', {$('#dropdown').val()}, //send the value of dropdown as GET parameter 'val' function(data){ $('#content').html(data.content); //first clear the image area: $('#imgs').empty(); //Insert all the images for(x in data.imgs){ $('#imgs').append('&lt;img src="'+data.imgs[x]+'"&gt;'); } }, 'json'); }); </code></pre> <p>That is supposing your HTML looks something like this:</p> <pre><code>&lt;select id='dropdown'&gt; &lt;option value='1'&gt;Option1&lt;/option&gt; &lt;option value='2'&gt;Option2 etc.&lt;/option&gt; &lt;/select&gt; &lt;div id='content'&gt;I contain the content, I might as well be a textarea or something else, as long is my id='content'&lt;/div&gt; &lt;div id='imgs'&gt;&lt;img src='iContainImgs.jpg'&gt;&lt;/div&gt; </code></pre> <p>Then on the server side you create a Json object with the following structure:</p> <pre><code>content: "all the content", imgs: array('img1.jpg', 'img2.jpg', 'etc') </code></pre> http://stackoverflow.com/questions/1383073/php-validate-youtube-url/1383088#1383088 0 Answer by Pim Jager for PHP validate youtube URL Pim Jager 2009-09-05T11:18:08Z 2009-09-05T11:18:08Z <p>You want to validate if a youtube url is an url to a real youtube video? This is quite hard, you could use regular expressions, but keep in mind that there are loads of valid ways to express a youtube url:</p> <ul> <li><a href="http://www.youtube.com/watch?v=p72I7g-RXpg" rel="nofollow">http://www.youtube.com/watch?v=p72I7g-RXpg</a></li> <li><a href="http://www.youtube.com/watch?asv=76621-2&amp;v=p72I7g-RXpg" rel="nofollow">http://www.youtube.com/watch?asv=76621-2&amp;v=p72I7g-RXpg</a></li> <li><a href="http://www.youtube.com/v/RdPxlTX27Fk" rel="nofollow">http://www.youtube.com/v/RdPxlTX27Fk</a></li> <li>etc.</li> </ul> <p>Also the video code can contain alphanumeric characters, underscores, -characters (dunno what they are called) and possibly more.</p> http://stackoverflow.com/questions/1369816/remove-tag-around-a-text-node-using-javascript/1369849#1369849 6 Answer by Pim Jager for Remove tag around a text node using javascript Pim Jager 2009-09-02T20:08:03Z 2009-09-02T20:18:48Z <p>You get the text, and replace the span with it:</p> <pre><code>var wrap = $('.highlight'); var text = wrap.text(); wrap.replaceWith(text); </code></pre> http://stackoverflow.com/questions/1354999/keep-me-logged-in-the-best-approach/1355065#1355065 5 Answer by Pim Jager for "Keep Me Logged In" - the best approach Pim Jager 2009-08-30T22:18:29Z 2009-08-30T22:18:29Z <p>Usually I do something like this:</p> <p>1) User logs in with 'keep me logged in'<br /> 2) Create session<br /> 3) Create a cookie called SOMETHING containing: md5(salt+username+ip+salt) and a cookie called somethingElse containing id<br /> 4) store cookie in database<br /> 5) user does stuff and leaves ----<br /> 6) user returns, check for somethingElse cookie, if it exists, get the old hash from the database for that user, check of the contents of cookie SOMETHING match with the hash from the database, which should also match with a newly calculated hash (for the ip) thus: cookieHash==databaseHash==md5(salt+username+ip+salt), if they do, goto 2, if they don't goto 1</p> <p>off course you can use different cookie names etc. also you can change the content of the cookie a bit, just make sure it isn't to easily created. You can for example also create a user_salt when the user is created and also put that in the cookie. </p> <p>Also you could use sha1 instead of md5 (or pretty much any algorithm)</p> http://stackoverflow.com/questions/1346986/php-in-ie6-and-other-browsers-except-firefox-is-slow/1347170#1347170 1 Answer by Pim Jager for PHP in IE6 and other browsers, except Firefox, is slow Pim Jager 2009-08-28T13:56:27Z 2009-08-28T13:56:27Z <p>PHP code executes on the server side, so this shouldn't be the problem (Note that PHP could still be the problem). One thing that could be the problem is the templates returning very complicated deeply nested HTML. I.e. IE has difficulty's rendering deeply nested large tables. You should check you HTML to see how complicated it is.</p> <p>Note that it still is possible (and likely) that part of your problems are on the PHP side. </p> http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/278711#278711 1 Answer by Pim Jager for What non-programming books should programmers read? Pim Jager 2008-11-10T18:24:12Z 2009-08-21T18:53:00Z <p>I think everyone should read '<a href="http://en.wikipedia.org/wiki/Extremely%5FLoud%5Fand%5FIncredibly%5FClose" rel="nofollow">Extremely Loud and Incredibly Close</a>' by Jonathan Safran Foer. It's awesome and I really love the way how he plays with the lay-out. It really is both literature and visual art.<br /> Apart from that, the kid who has the lead role is super awesome.</p> <p></p> http://stackoverflow.com/questions/1298158/close-a-window-on-button-click/1298183#1298183 4 Answer by Pim Jager for Close a window on button click Pim Jager 2009-08-19T06:51:28Z 2009-08-19T06:51:28Z <p>As seth comments, your problem is the handler not being attached because the browser won't execute java/javascript code as it doesn't know what to do with it (since it is nothing). Change it to text/javascript and you should be fine.</p> http://stackoverflow.com/questions/1799184/how-to-add-array-element-values-with-javascript/1799199#1799199 Comment by Pim Jager on how to add array element values with javascript ? Pim Jager 2009-11-25T19:01:14Z 2009-11-25T19:01:14Z Dammit, your absolutly right, was just to eager to get my answer out there. added it. http://stackoverflow.com/questions/1700807/how-to-show-extended-option-in-select-list/1700868#1700868 Comment by Pim Jager on How to show extended option in select list? Pim Jager 2009-11-09T14:08:43Z 2009-11-09T14:08:43Z You should propably do something with fixed positioning and such, because this will reflow the page. http://stackoverflow.com/questions/1687639/textarea-what-key-was-pressed-with-javascript/1687982#1687982 Comment by Pim Jager on <textarea> what key was pressed with javascript Pim Jager 2009-11-07T09:59:21Z 2009-11-07T09:59:21Z Maybe you should use a little less trenary operators (or whatever they are called in javascript) They make the code very unreadable. http://stackoverflow.com/questions/1692502/cant-fathom-how-to-do-this-php-mysql-question/1692510#1692510 Comment by Pim Jager on Cant fathom how to do this...PHP/Mysql question. Pim Jager 2009-11-07T09:19:25Z 2009-11-07T09:19:25Z There is no need for the != null, null is a falsy value in PHP so when $row == null the while loop will break. http://stackoverflow.com/questions/1684917/what-questions-should-a-javascript-programmer-be-able-to-answer/1684935#1684935 Comment by Pim Jager on What questions should a JavaScript programmer be able to answer? Pim Jager 2009-11-06T02:01:44Z 2009-11-06T02:01:44Z I don't really think this is an issue everyone should be able to fix just of the top of his head. It's to specefic and should simply be googled when it occurs. http://stackoverflow.com/questions/1680032/how-to-conduct-arithmetic-operations-in-jquery Comment by Pim Jager on How to conduct arithmetic operations in JQuery? Pim Jager 2009-11-05T11:58:36Z 2009-11-05T11:58:36Z It isn't jQuery treating them as strings, it is javascript treating them as strings (as they are strings). jQuery only gets the values. Javascript does the arimethics, jQuery is just a library on top of javascript. http://stackoverflow.com/questions/1619356/how-to-batch-execute-php-script-from-one-php-script Comment by Pim Jager on How to batch execute php script from one php script? Pim Jager 2009-10-24T22:30:01Z 2009-10-24T22:30:01Z What errors did you get? http://stackoverflow.com/questions/1612938/program-to-return-power-of-2-without-using-any-power-function Comment by Pim Jager on Program to return power of 2 without using any power function. Pim Jager 2009-10-23T11:52:20Z 2009-10-23T11:52:20Z You should explain this more clearly, what are you trying to do? (sounds like homework) http://stackoverflow.com/questions/308751/why-use-jquery/308790#308790 Comment by Pim Jager on Why use jquery ? Pim Jager 2009-10-12T11:55:28Z 2009-10-12T11:55:28Z +1 just for the 'cursing the IE team' bit http://stackoverflow.com/questions/1550464/randomly-change-div-background-image-on-page-load/1550495#1550495 Comment by Pim Jager on randomly change div background image on page load Pim Jager 2009-10-11T21:11:06Z 2009-10-11T21:11:06Z Yup, un-downvoted you. http://stackoverflow.com/questions/1550506/accessing-parent-variables-in-child-method/1550528#1550528 Comment by Pim Jager on Accessing parent variables in child method Pim Jager 2009-10-11T12:40:31Z 2009-10-11T12:40:31Z However it doesn't make much sense to have all (inherented) instances of dog to have the same name, so static doesn't make much sense here. http://stackoverflow.com/questions/1550464/randomly-change-div-background-image-on-page-load Comment by Pim Jager on randomly change div background image on page load Pim Jager 2009-10-11T12:12:38Z 2009-10-11T12:12:38Z I added more to my answer in response to your comment, please loke into it. http://stackoverflow.com/questions/1550464/randomly-change-div-background-image-on-page-load/1550495#1550495 Comment by Pim Jager on randomly change div background image on page load Pim Jager 2009-10-11T11:38:38Z 2009-10-11T11:38:38Z No You need Math.Floor, consider the simplest case of 1 array entry, the length is 1, but the biggest value for the index you want is 0, so you should floor the random value. http://stackoverflow.com/questions/1497387/javascript-incompatibility-with-mozilla/1497409#1497409 Comment by Pim Jager on Javascript Incompatibility with Mozilla Pim Jager 2009-09-30T11:43:34Z 2009-09-30T11:43:34Z As Triptych says, make sure you only run this once the page has completely finished loading, running this before that happens might cause the elemnt with id checkAll not to be created and thus causing firefox to return null. http://stackoverflow.com/questions/1484522/debug-simple-php-while-code Comment by Pim Jager on Debug simple php while code Pim Jager 2009-09-27T21:47:48Z 2009-09-27T21:47:48Z also please use &amp;&amp; and || instead of &quot;and&quot; and &quot;or&quot; they are more commenly used and make your code more readible.