User mike nvck - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T04:18:50Zhttp://stackoverflow.com/feeds/user/36531http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/737307/javascript-is-it-better-to-use-innerhtml-or-lots-of-createelement-calls-to-add/737440#7374400Answer by mike nvck for JavaScript: Is it better to use innerHTML or (lots of) createElement calls to add a complex div structure?mike nvck2009-04-10T12:10:28Z2009-04-10T14:08:06Z<p>For a complex problem like this, I usually use the innerHTML methods because they are a)easier to read and modify code-wise b)more convenient to use in loops. As the top post says, they unfortunately fail in IE(6,7,8) on <code><table></code>, <code><thead></code>,<code><tbody></code>,<code><tr></code>,<code><tfoot></code>, <code><select></code>, <code><pre></code> elements.</p>
http://stackoverflow.com/questions/700684/content-ideas-for-a-short-javascript-lesson/700744#7007440Answer by mike nvck for Content ideas for a short JavaScript lesson.mike nvck2009-03-31T12:45:14Z2009-03-31T12:45:14Z<pre><code>1) basic stuff (skip if they know it) - how to make it part of standard HTML page: <script src='foo.js'></script>, <div onclick='functionDefinedInFoo();'>Click me</div>...
2) functions (passing values and events, calling another functions), add if() and for()/while() loops if they do not code
3) AJAX (with simple PHP example), AJAX kicks ass, just do the simplest default GET script to get a lot of "wow how did you do that"s
4) DOM methods (appendChild etc.)
5) CSS manipulation (element.style.whatever)
6) window.whatever (print(), close(), onresize/onload = function(){...;})
</code></pre>
<p>basically, it depends on their level of experience but if they do not know much about JS, using the 30 min to teach them how to do simple yet intriguing stuff is more valuable than just talking theory IMO</p>
<p>EDIT:
oops jumped the gun xD you said they all know quite a bit about JS</p>
<p>I would pick a topic you have most experience implementing and talk about the unique stuff you run into now and then. The special cases, making it cross browser compatible, irregular stuff you spent a lot of time figuring out AFTER you learned the main method. And AJAX, lots of it still ;P</p>
http://stackoverflow.com/questions/681087/how-can-i-detect-a-scrollbar-presence-using-javascript-in-html-iframe/681170#6811701Answer by mike nvck for How can I detect a Scrollbar presence ( using Javascript ) in HTML iFrame ?mike nvck2009-03-25T11:24:31Z2009-03-26T07:54:22Z<p>I do not think this can be done if the iframe content comes from another domain due to JavaScript security limitations.</p>
<p>EDIT:
In that case, something along the lines of giving the iframe a name='someframe' and id='someframe2' and then comparing frames['someframe'].document.body.offsetWidth with document.getElementById('someframe2').offsetWidth should give you the answer.</p>
http://stackoverflow.com/questions/335598/html-scrollbar-jump-by-itself/681178#6811780Answer by mike nvck for html - scrollbar jump by itself mike nvck2009-03-25T11:26:53Z2009-03-25T11:26:53Z<p>Are you sure the object causing the problem is not an <code><a href='#'><div onclick='yourJavaScriptFunction()'>...</div></a></code> or something similar?</p>
http://stackoverflow.com/questions/673431/how-to-extract-the-value-of-a-field-in-an-iframe-into-the-main-page/673602#6736020Answer by mike nvck for how to extract the value of a field in an iframe into the main pagemike nvck2009-03-23T14:37:16Z2009-03-23T14:37:16Z<p>If your page and the iframe content come from different domains, this will be quite tricky. I was recently forced to find a workaround for this and managed pull it off with an AJAX call to a PHP script utilizing file_get_contents() but it is not very copyright compliant or secure...</p>
http://stackoverflow.com/questions/673107/javascript-getting-undefined-when-trying-to-get-arrays-prototype/673122#6731220Answer by mike nvck for Javascript - Getting 'undefined' when trying to get array's prototypemike nvck2009-03-23T11:59:42Z2009-03-23T11:59:42Z<p>Not really my cup of tea, but does this way of defining it make "obj" an array?
Tried</p>
<pre><code>obj = new Array();
obj[0] = "a";
obj[1] = "b";
</code></pre>
<p>?</p>
http://stackoverflow.com/questions/671701/javascript-onchange-limitations/672601#6726010Answer by mike nvck for Javascript .onchange limitationsmike nvck2009-03-23T08:56:08Z2009-03-23T08:56:08Z<pre><code>window.onresize=function(){
exampleFunction();
}
</code></pre>
<p>is what I do. I am not very keen of onchange, if you changed the element with JS, you can also call the event in the same JS. (why do it like: JS -> element -> JS, when you can go: JS -> element and JS)</p>
http://stackoverflow.com/questions/642991/whats-the-correct-way-for-a-cross-browser-html-layout/643049#6430490Answer by mike nvck for What's the correct way for a cross-browser HTML layout?mike nvck2009-03-13T14:50:23Z2009-03-13T15:27:06Z<p>There are not many cases where you HAVE to use JavaScript for formatting/design. Only exception I can recall right now is reformatting the page when user resizes the window.</p>
<p>This sort of thing can be 100% done with plain HTML + CSS. It may need conditional stylesheet for IE6 and mobile platforms, but every single web I made so far had the same stylesheet for IE7 and FF3 and worked ok with DIVs instead of tables. You just need to think, google, and improvise (in this order ;).</p>
<p>However, I do not think this particular case can be achieved without a DIV for each table, row, and cell which means you will be doing pretty much the same thing as with <code><table>, <tr> and <td></code>. Displaying tabular data in tables is semantically fine so if you really need it as a table, not as a web layout, just save yourself the trouble and use the HTML table markup.</p>
http://stackoverflow.com/questions/642040/firefox-onkeydown-detect-pressed-key/642111#6421112Answer by mike nvck for Firefox onkeydown detect pressed keymike nvck2009-03-13T10:34:26Z2009-03-13T14:44:36Z<p>I wrote this yesterday, works in both FF and IE => </p>
<pre><code>//execute this during initialization
document.onkeydown = function(event){
var holder;
//IE uses this
if(window.event){
holder=window.event.keyCode;
}
//FF uses this
else{
holder=event.which;
}
keyz(holder);
}
function keyz(holder){
if(key == /*desired code*/){
/*execute stuff*/
}
}
</code></pre>
<p>you will want to replace document.onkeydown with [your input].onkeydown</p>
http://stackoverflow.com/questions/630118/how-can-i-restrict-the-use-of-other-applications-during-an-online-exam/630232#6302320Answer by mike nvck for How can I restrict the use of other applications during an online exam?mike nvck2009-03-10T13:43:30Z2009-03-10T13:43:30Z<p>Only way I am aware of would be:</p>
<p>Explicitly state that switching out of the current tab/window is forbidden beforehand.</p>
<p>Close the exam and declare it void if the rule is violated. (track focus/window resize with JS).</p>
<p>Reliably blocking anything outside the current browser window by JS is impossible. The user can always launch different browser with its own JS engine and do whatever he wants.</p>
http://stackoverflow.com/questions/626006/what-should-i-consider-when-building-a-content-management-system-cms/626177#6261772Answer by mike nvck for What should I consider when building a Content Management System (CMS)?mike nvck2009-03-09T13:16:21Z2009-03-09T13:16:21Z<p>I would totally research existing CMS's, pick 3 to 5 of the ones suitable for the environment (MSSQL/MySQL? ASP/PHP?), then install each one, try to throw a basic skeleton of the site together on each of them, see what modules already exist and try to code a small custom module for it on your own. Then pick the one you found the most convenient.</p>
<p>Honestly, writing your own CMS is too time consuming, trust me, I tried. You want to find a solution that fits these:</p>
<p>1) your coders can extend it
2) your graphics people can easily apply styles to it
3) your users/editors can easily add content</p>
<p>(Unless you get paid for trying to code your own system from the scratch and use it as a learning experience for yourself. I can understand that. And feel sorry for the users ;)</p>
http://stackoverflow.com/questions/626059/teammember-over-estimating-abilities-how-to-help-him-grow/626107#6261072Answer by mike nvck for Teammember over-estimating abilities. How to help him grow?mike nvck2009-03-09T12:56:51Z2009-03-09T12:56:51Z<p>I think everyone has a certain "learning path" he needs to walk in order to become a real coder. Unfortunately, each of us comes with different set of skills and attitudes so the paths also tend to start in various stages and branch out differently. Each step of the long walk uncovers the overall horizon a bit further and sometimes even shifts your personal coding paradims and forces you to appreciate and use approachases you considered "overcomplicated" couple of steps before. I think you need to figure out what is the "next step" for this particular guy, which may be quite difficult or even impossible considering the "been doing it like this for 20 years" attitude.</p>
http://stackoverflow.com/questions/617876/horizontal-scroll-bar-in-ie6/618329#6183290Answer by mike nvck for Horizontal scroll bar in IE6mike nvck2009-03-06T10:14:10Z2009-03-06T13:32:37Z<p>tried</p>
<pre><code>html{
width:100%;
overflow-x: hidden;
}
body{
width:100%;
overflow-x: hidden;
}
</code></pre>
<p>yet?</p>
<p><strong>EDIT:</strong></p>
<p><em>This works but hides right side edge content. See the link screenshot. <a href="http://shivanand.in/temp/rightside-edges-hidden.gif" rel="nofollow">http://shivanand.in/temp/rightside-edges-hidden.gif</a> – Shivanand</em></p>
<p>Hmm, that is weird. Are you using any position: absolute DIVs with width set in pixels (not %) that are causing this to happen?</p>
http://stackoverflow.com/questions/611378/firefox-this-function/614163#6141631Answer by mike nvck for FireFox this Function...mike nvck2009-03-05T09:55:47Z2009-03-05T09:55:47Z<p>you could also go: </p>
<pre><code><input type='button' name='2ndButton' id='2ndButton' onclick='drvFunc(this.id)'>
function drvFunc(elemid){
alert(document.getElementById(elemid).value);
}
</code></pre>
http://stackoverflow.com/questions/585229/ie7-bottom-scrollbar-hell/585312#5853122Answer by mike nvck for ie7 bottom scrollbar hellmike nvck2009-02-25T09:28:52Z2009-02-25T09:28:52Z<p>From your CSS:</p>
<pre><code>body {
background-color:black;
background-image:url(../images/contentbg.jpg);
background-repeat:repeat-x;
height:536px;
background-position:top left;
color:white;
}
</code></pre>
<p>try adding <code>overflow-x: hidden;</code> and possibly also <code>width: 100%;</code></p>
<p>or try adding</p>
<pre><code>html{
width:100%;
overflow-x: hidden;
}
</code></pre>
<p>play around with these, the right combination should make it work OK.</p>
http://stackoverflow.com/questions/315552/javascript-document-write-in-external-js-file-ie-problem-yes-again-and-still/556349#5563490Answer by mike nvck for javascript document.write in external js file. IE problem. Yes, again and still.mike nvck2009-02-17T11:16:11Z2009-02-17T11:16:11Z<p>load it into a hidden (size 0x0) iframe, then move it elsewhere with javascript</p>
http://stackoverflow.com/questions/556322/why-use-document-write/556335#5563350Answer by mike nvck for Why use document.write?mike nvck2009-02-17T11:07:52Z2009-02-17T11:07:52Z<p>Wow, that looks weird! Maybe a lame attempt at avoiding adblocking scripts?</p>
http://stackoverflow.com/questions/528741/using-xmlhttprequest-to-display-a-popup/528774#5287740Answer by mike nvck for Using XMLHttpRequest to display a popupmike nvck2009-02-09T16:08:29Z2009-02-12T07:53:58Z<p>Do you really need to open a new window? Opening an absolutely positioned DIV or a new layer on top of the current page in the same window is all the rage these days.</p>
<p><hr /></p>
<p>Edit: </p>
<p>I don't think it would limit the number of popups, there is some neat stuff that can be done these days with libraries like jQuery + jQuery UI, you can simply create as many of these DIVs/layers as you need and make them movable, resizable, etc. Only thing that real popups have and these do not is that they do not appear on the tab panel/taskbar.</p>
<p>Yes, you will be limited to the size of the window in which is the main page opened, however, I don't personally see it as a problem since most people surf in a maximized browser window anyways.</p>
<p>Implementation of the oldschool typical popup window is undoubtedly much easier for you, but it also runs into problems with end user popup blockers. Just had that problem @ my work, they needed to make a popup during the certificate authentication process for some reason and as soon as Yahoo released a new version their toolbar, it quit working).</p>
http://stackoverflow.com/questions/483096/php-tpl-based-content-management-system-pros-and-cons0php .tpl based content management system — pros and consmike nvck2009-01-27T11:44:42Z2009-01-27T12:00:53Z
<p>Hello,</p>
<p>I work at a company which uses a legacy content management system based on php utilizing templates. I am fed up with it as it is vastly inferior to modern CMS' (i.e. Drupal), particularly due to poor AJAX implementation capability and general confusion of branched out template tree. It is within my power to switch to a newer CMS as long as I have solid arguments to back it up. I decided to turn to people on this site as I am not primarily a coder. What would be the main reason for letting go of the old system?</p>
<p>Best regards,</p>
<p>Mike</p>
http://stackoverflow.com/questions/340478/phpcode-generating-broken-javascript-and-html-code/340541#3405410Answer by mike nvck for phpcode generating broken javascript and html codemike nvck2008-12-04T13:14:27Z2008-12-04T13:14:27Z<p>Putting the HTML markup into your .js file, AJAX fetching just the values returned by MySQL query and plugging them in could fix it, not sure if this can be applied in your situation though. I think the & in "Ed Hardy Damen T-Shirt Skulls & Butterfly, Gr.M Neu+OVP" may be what breaks the whole thing, tried it on an entry without & in it?</p>
http://stackoverflow.com/questions/331186/why-does-my-custom-drag-and-drop-script-fail-1Why does my custom drag and drop script fail?mike nvck2008-12-01T15:34:21Z2008-12-01T19:26:58Z
<p>Hi all,</p>
<p>I am currently trying to code my own JS drag and drop script (out of sheer curiosity and boredom, I know it would be much easier with a framework). My aim is a fully working FF3 version , IE can wait for now. </p>
<p>I just got stuck on a weird bug. When I drag the div for the first time, it works ok. When I drag it for the second time, it does not stick after releasing the button and I have to click once more to get it down. Third and consequent drags work flawlessly again (!?!).</p>
<p>Please see [the original page][1] (as I said, FireFox only for now) for an idea of what happens. The whole thing is done as a div with two events (onmousedown and onmouseup) using document.captureEvents(Event.MOUSEMOVE) for the intermediate movement. The script can be found [here][2] (disregard the bottom ajax part, it is prepared for some additional tricks and the bug stays if I take it out). </p>
<p>Please let me know if you have encountered something similar in the past or if you see a mistake somewhere. I know there may be better ways to go around the whole thing but I am specifically looking for a way to make my approach work.</p>
<p>Thanks for your time,</p>
<p>Mike</p>
<p><strong>EDIT: Chrome and Safari work.</strong></p>
<p><strong>EDIT: Taking the links offline, working on new version.</strong></p>
http://stackoverflow.com/questions/329929/to-ajaxify-or-not/330384#3303841Answer by mike nvck for To Ajaxify Or Not?mike nvck2008-12-01T09:41:11Z2008-12-01T09:41:11Z<p>The most common scaling issue of ajax apps is when they are to set up to check back with the server to see if the content got updated in the meantime without the need for user actively requesting it. 5 clients checking every 10 seconds is not 5000 clients checking every 10 sec.</p>
http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/324089#3240891Answer by mike nvck for Defend PHP; convince me it isn't horriblemike nvck2008-11-27T15:53:05Z2008-11-27T15:53:05Z<p>For me, PHP is certainly not the best thing since sliced bread. However, unlike ASP, it tends to solve my problems.</p>
http://stackoverflow.com/questions/321477/need-help-displaying-children-lists-without-spacing-the-parent-lists/321772#3217720Answer by mike nvck for Need help displaying children lists without spacing the parent listsmike nvck2008-11-26T19:00:36Z2008-11-26T19:00:36Z<p>You want to give the concentrations-list class a <code>display: none;</code> property in CSS.
You can then display one of the sublists by giving it onclick event that changes the class to concentrations-list-showing and adding a concentrations-list-showing class to the CSS and giving it a <code>display: block;</code> property. </p>
http://stackoverflow.com/questions/320387/manipulating-css-layers-with-javascript/320433#3204331Answer by mike nvck for manipulating css layers with javascriptmike nvck2008-11-26T11:45:25Z2008-11-26T11:53:02Z<p>I would recommend <a href="http://orangoo.com/labs/GreyBox/" rel="nofollow">GreyBox</a> for this, it is quite small and works as good as any other lightbox solution.</p>
<p>However, if you are already using a JS framework (Mootools/jQuery/Prototype) on the same page, you might as well go for a solution based on it, there is plenty that can be googled. If you specifically require a slideshow function (GreyBox does not have it AFAIK), I have used <a href="http://www.justinbarkhuff.com/lab/lightbox_slideshow/" rel="nofollow">Slideshow Lightbox</a> (Prototype based) with success in the past.</p>
http://stackoverflow.com/questions/320335/html-email-delivered-as-an-attachment-as-well-as-the-body/320378#3203780Answer by mike nvck for HTML Email delivered as an attachment as well as the body!?mike nvck2008-11-26T11:29:00Z2008-11-26T11:29:00Z<p>Only time I get this is when i set charset:unicode instead of charset:utf-8 somewhere but it may be completely unrelated. Telling us more about the external component would certainly allow for better answers.</p>
http://stackoverflow.com/questions/244788/what-do-you-wear-to-an-interview-for-an-engineering-position/320236#3202361Answer by mike nvck for What do you wear to an interview (for an engineering position)?mike nvck2008-11-26T10:24:03Z2008-11-26T10:24:03Z<p>If you do not get hired just for wearing a suit, the job was most likely not worth it in the first place.</p>
http://stackoverflow.com/questions/314164/ie-positions-left-sidebar-below-content/314271#3142710Answer by mike nvck for IE positions left sidebar below contentmike nvck2008-11-24T14:27:10Z2008-11-24T14:27:10Z<p>You currently have: </p>
<pre><code><div id=page>
<div id=content></div>
</div>
<div id=sidebar></div>
</code></pre>
<p>I think:</p>
<pre><code><div id=page>
<div id=sidebar></div>
<div id=content></div>
</div>
</code></pre>
<p>would make much more sense layout-wise and may possibly fix your problem. If not, play around with position: absolute; of the sidebar div and margin-left of the content div in the CSS.</p>
http://stackoverflow.com/questions/313894/what-are-the-advantages-of-using-j2ee-over-asp-net/313948#3139483Answer by mike nvck for What are the advantages of using J2EE over ASP.net?mike nvck2008-11-24T11:39:32Z2008-11-24T11:39:32Z<p>Avoiding Microsoft lock-in should be one of the factors that infuence your decision. I do not mean this as an insult but your favourable opinion of .net seems to stem from viewing a couple of tech demos. Of course you will be promised a tool which makes it very easy to do your job but that is mostly just PR talk. There WILL be problems and dead ends during the development and if you stick to J2EE, you may already have the know-how to solve them from the past projects.</p>
http://stackoverflow.com/questions/313468/why-is-using-tables-for-website-layout-such-an-evil/313630#3136302Answer by mike nvck for Why is using tables for website layout such an evilmike nvck2008-11-24T07:59:34Z2008-11-24T07:59:34Z<p>This may not be right on the topic but the most frequent problem I have with CSS layouts is that they can be difficult to set up so that they always stretch the parent node instead of just overflowing it. This becomes even bigger pain when you hit one of the not very rare instances of IE doing something completely different than FF. Fixing this mess with a table is usually easier and more compliant than various JS workarounds you would be otherwise forced to use.</p>
http://stackoverflow.com/questions/237719/most-frustrating-programming-style-youve-encountered/237723#237723Comment by mike nvck on Most frustrating programming style you've encounteredmike nvck2009-04-16T15:16:15Z2009-04-16T15:16:15Zzp as in zip, n1 as in negative one, what is nondescriptive about that
ok i kid i kid ;Phttp://stackoverflow.com/questions/431175/what-was-your-first-computer-game-that-got-you-interested-in-computers/431274#431274Comment by mike nvck on What was your first computer game that got you interested in computers?mike nvck2009-04-10T11:46:01Z2009-04-10T11:46:01Zyou are young man =)http://stackoverflow.com/questions/698430/what-question-would-you-have-asked-as-an-april-fool/698485#698485Comment by mike nvck on What question would you have asked as an April Fool?mike nvck2009-03-31T08:18:37Z2009-03-31T08:18:37Zwoah, thats crazy!http://stackoverflow.com/questions/686455/detecting-login-fieldsComment by mike nvck on Detecting Login Fieldsmike nvck2009-03-26T16:18:57Z2009-03-26T16:18:57Zoh you hacker you!http://stackoverflow.com/questions/680562/can-javascript-read-the-source-of-any-web-pageComment by mike nvck on Can Javascript read the source of any web page?mike nvck2009-03-25T08:06:49Z2009-03-25T08:06:49Zlook into PHP's file_get_contents() for thishttp://stackoverflow.com/questions/673386/how-can-i-get-a-fixed-footer-like-facebook-application-design/673396#673396Comment by mike nvck on How can I get a fixed footer like facebook application designmike nvck2009-03-23T14:38:35Z2009-03-23T14:38:35ZI do not think this will work in IE.http://stackoverflow.com/questions/656981/what-software-for-your-own-personal-use-did-you-write/657006#657006Comment by mike nvck on What software for your own personal use did you write?mike nvck2009-03-18T09:58:50Z2009-03-18T09:58:50Zyeah lol that was the first 'real' program I wrote, did it in Python and ran it on Google AppEngine ;Phttp://stackoverflow.com/questions/638686/why-does-my-myofferpal-affiliate-script-apparently-not-work-in-some-wayComment by mike nvck on Why does my Myofferpal affiliate script apparently not work in some way?mike nvck2009-03-12T13:56:04Z2009-03-12T13:56:04Zlearn javascript first before learning frameworks would be my oh-so-wise recommendationhttp://stackoverflow.com/questions/634089/site-5x-faster-via-modrewrite-but-css-images-are-brokenComment by mike nvck on site 5x faster via mod_rewrite, but CSS images are brokenmike nvck2009-03-11T12:01:58Z2009-03-11T12:01:58Zmaybe the stylesheet thinks it is located at c.example.com and looks for the urls at c.example.com/images/logo.jpg ?http://stackoverflow.com/questions/171156/best-practices-always-return-a-never-a/171456#171456Comment by mike nvck on Best Practices: Always return a ____, never a ____mike nvck2009-03-10T11:17:56Z2009-03-10T11:17:56Ztrue, false, and FILE_NOT_FOUND naturally!http://stackoverflow.com/questions/557479/archetypes-of-developer-career-paths/557522#557522Comment by mike nvck on Archetypes Of Developer Career Pathsmike nvck2009-03-09T13:08:29Z2009-03-09T13:08:29ZThere is also the Polymorph Dead-Weight: guys who can learn a new language/technology if the job requires it, but they keep using the old approaches/paradigms without applying the leverage this new technology was used for in the first place.http://stackoverflow.com/questions/582233/how-can-i-get-an-absolutely-positioned-div-to-extend-outside-its-relativley-posit/611098#611098Comment by mike nvck on How can I get an absolutely-positioned div to extend outside its relativley-positioned parent, which has overflow: auto?mike nvck2009-03-05T16:07:25Z2009-03-05T16:07:25Zwrapper divs may not be very elegant but they do the job most of the time for mehttp://stackoverflow.com/questions/585229/ie7-bottom-scrollbar-hell/585312#585312Comment by mike nvck on ie7 bottom scrollbar hellmike nvck2009-02-25T15:26:58Z2009-02-25T15:26:58Zyou are welcome mate, accept the answer please ;)http://stackoverflow.com/questions/585229/ie7-bottom-scrollbar-hell/585293#585293Comment by mike nvck on ie7 bottom scrollbar hellmike nvck2009-02-25T09:30:39Z2009-02-25T09:30:39ZI think the Web Developer Toolbar for IE7 from Microsoft works quite neat. I actually use it for testing over Firebug.http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/324089#324089Comment by mike nvck on Defend PHP; convince me it isn't horriblemike nvck2009-02-09T16:10:44Z2009-02-09T16:10:44ZPoint taken, I may be just too biased due to my Microsoft grudge and growing up on JS+PHP+MySQL.