User bigmattyh - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T14:34:33Zhttp://stackoverflow.com/feeds/user/2321http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1800025/whats-limiting-my-php-resources0What's limiting my PHP resources?bigmattyh2009-11-25T21:19:58Z2009-11-25T22:27:48Z
<p>I'm having a problem getting more memory out of PHP.</p>
<p>This is the error message:</p>
<pre><code>Fatal error: Allowed memory size of 20971520 bytes exhausted (tried to allocate 82 bytes) in ...
</code></pre>
<p>Yet:</p>
<p>I've set memory_limit in the php.ini file to 32M:</p>
<pre><code>memory_limit = 32M;
</code></pre>
<p>I've also tried to override it manually in the actual script:</p>
<pre><code>ini_set('memory_limit', '32M');
</code></pre>
<p>And -- here's where I'm lost -- I've confirmed via phpinfo() that this php.ini file is the actual ini file used, and the memory_limit seems to be set correctly. The line on memory_limit gives this:</p>
<pre><code>memory_limit 32M 32M
</code></pre>
<p>So it would seem that everything is configured properly, but I'm only getting 20971520 bytes (~20M).</p>
<p>Where else should I be looking to figure out where this limitation is being imposed?</p>
<p><strong>EDIT:</strong> I'm running php under nginx/fastcgi, on Ubuntu 9.04 in a VPS. The php-cgi processes do seem to be a bit resource-hungry (RES=25m, VIRT=187m), but I have 10m of physical memory free and 500m of swap space free.</p>
http://stackoverflow.com/questions/1800025/whats-limiting-my-php-resources/1800360#18003601Answer by bigmattyh for What's limiting my PHP resources?bigmattyh2009-11-25T22:27:48Z2009-11-25T22:27:48Z<p>I just pored over the code I was running, and someone had hard-coded this into a config file:</p>
<pre><code>ini_set('memory_limit', '20M');
</code></pre>
<p>Which was overriding everything else I was doing. Whew.</p>
http://stackoverflow.com/questions/125177/whats-a-good-tool-to-screen-scrape-with-javascript-support3What's a good tool to screen-scrape with Javascript support?bigmattyh2008-09-24T03:01:46Z2009-10-27T23:33:06Z
<p>Is there a good test suite or tool set that can automate website navigation -- with Javascript support -- and collect the HTML from the pages?</p>
<p>Of course I can scrape straight HTML with BeautifulSoup. But this does me no good for sites that require Javascript. :)</p>
http://stackoverflow.com/questions/1553342/custom-event-in-jquery-that-isnt-bound-to-a-dom-element/1556955#15569550Answer by bigmattyh for Custom event in jQuery that isn't bound to a DOM element?bigmattyh2009-10-12T21:08:32Z2009-10-12T21:08:32Z<p>You can still arbitrarily trigger and respond to events using jQuery, even if you don't know what element to attach them to. Just create a "receiver" element in your document, to which you can bind all your custom events. This allows you to manage your event handling logic in one place, for all your non-element-specific events.</p>
<pre><code>$(document).ready(function() {
$(body).append('<div id="receiver">');
$("#receiver").bind("foo_event", function () {
// decide what to do now that foo_event has been triggered.
});
$("#some_element").click(function() {
$("#receiver").trigger("foo_event");
});
});
</code></pre>
http://stackoverflow.com/questions/1484775/do-any-sites-using-mvc-frameworks-php-python-post-their-full-source-through/1484893#14848931Answer by bigmattyh for Do any sites using MVC frameworks ( php, python ) post their full source through a VC browser?bigmattyh2009-09-28T00:22:36Z2009-09-28T00:22:36Z<p>If you're looking for some fully functional Django webapps, Nathan Borror has published the source of his <a href="http://github.com/nathanborror/django-basic-apps/tree/master/basic/" rel="nofollow">Django Basic Apps</a>.</p>
http://stackoverflow.com/questions/1480588/input-size-vs-width/1480609#14806091Answer by bigmattyh for input size Vs widthbigmattyh2009-09-26T06:51:57Z2009-09-26T06:51:57Z<p>You'll get more consistency if you use width (your second example).</p>
http://stackoverflow.com/questions/1470233/how-to-dynamically-add-em-tag-before-img/1470254#14702542Answer by bigmattyh for How to dynamically add em tag before img?bigmattyh2009-09-24T07:33:52Z2009-09-24T07:33:52Z<pre><code>$("img.photo").before("<em>");
</code></pre>
http://stackoverflow.com/questions/1468914/how-can-i-fix-this-strange-ie-8-img-anchor-hover-behaviour/1468927#14689270Answer by bigmattyh for How can I fix this strange IE 8 img anchor hover behaviour? bigmattyh2009-09-23T22:50:24Z2009-09-23T22:50:24Z<p>You might also try setting line-height on that item to 0.</p>
http://stackoverflow.com/questions/1449074/is-there-a-way-of-making-normal-links-automatically-load-through-ajax-rather-tha/1449087#14490874Answer by bigmattyh for Is there a way of making normal links automatically load through ajax, rather than normally?bigmattyh2009-09-19T17:48:11Z2009-09-19T20:27:05Z<p>Sure, you can do it with jQuery.</p>
<p>This script goes through the document, finds every anchor element and binds an event handler to the click event of each. When the anchor element is clicked, the event handler finds the href attribute and loads that page into #targetDiv (you can call this div whatever you want, of course).</p>
<pre><code><script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js">
</script>
<script type="text/javascript">
$(document).ready(function() {
$("a").click(function() {
$("#targetDiv").load(($(this).attr("href") + " body");
return false;
});
});
</script>
...
<!-- In your document body, this is the div you'd load the pages into. -->
<div id="targetDiv"></div>
</code></pre>
http://stackoverflow.com/questions/1446490/setting-styles-through-code-on-html-elements-is-there-better-way/1446505#14465052Answer by bigmattyh for Setting styles through code on html elements. Is there better way?bigmattyh2009-09-18T19:47:43Z2009-09-18T19:47:43Z<p>I'll start it off by saying that it's generally a bad practice to set inline styles on elements -- especially on server-side code.</p>
<p>Style should generally be set through external style sheets.</p>
<p>When manipulating the DOM on the client-side, there are a number of acceptable ways of setting an element's style. Generally, it's efficient for coders to use a library like jQuery.</p>
http://stackoverflow.com/questions/1419937/how-to-create-multiple-instances-of-show-hide-div-in-jquery/1419948#14199482Answer by bigmattyh for How to create multiple instances of show/hide div in jquery?bigmattyh2009-09-14T06:24:35Z2009-09-14T06:35:37Z<p>You shouldn't repeat IDs in your HTML. But you do want to use the same functionality in jQuery, so add a common class name so that you can apply the function to all of these anchors.</p>
<p>Also, since you're not sure about whether the HTML structure can be predictable, you'll need to output a link between anchor element and div element. Note the data-id attribute below:</p>
<pre><code><a id="someID" class="slick-toggle" data-id="334" href="#">Show/Hide</a>
<div id="someOtherID" class="slickbox" data-id="334" style="display: none;">
hidden content here
</div>
</code></pre>
<p>This "334" could be anything. This would be something unique that you can decide on when you're outputting the content.</p>
<p>Now your code can target each .slick-toggle class, and have it toggle the associated div.</p>
<pre><code>$(document).ready(function() {
$('a.slick-toggle').click(function() {
var dataID = $(this).attr("data-id");
$("div[data-id=" + dataID + "].slickbox").toggle(400);
return false;
});
});
</code></pre>
http://stackoverflow.com/questions/1408925/django-templates-include-and-extends/1408937#14089372Answer by bigmattyh for django templates: include and extendsbigmattyh2009-09-11T04:13:46Z2009-09-11T04:19:43Z<p>When you use the extends template tag, you're saying that the current template extends another -- that it is a child template, dependent on a parent template. Django will look at your child template and use its content to populate the parent.</p>
<p>Everything that you want to use in a child template should be within blocks, which Django uses to populate the parent. If you want use an include statement in that child template, you have to put it within a block, for Django to make sense of it. Otherwise it just doesn't make sense and Django doesn't know what to do with it.</p>
<p>The Django documentation has a few really good examples of using blocks to replace blocks in the parent template.</p>
<p><a href="http://docs.djangoproject.com/en/dev/topics/templates/#template-inheritance" rel="nofollow">http://docs.djangoproject.com/en/dev/topics/templates/#template-inheritance</a></p>
http://stackoverflow.com/questions/1396877/is-there-a-de-facto-relation-between-the-font-size-ranges-1-2-3-4-5-6-7-a/1396931#13969312Answer by bigmattyh for Is there a de-facto relation between the font size ranges {1, 2, 3, 4, 5, 6, 7} and {xx-small, x-small, small, medium, large, x-large, xx-large}?bigmattyh2009-09-08T23:49:38Z2009-09-08T23:49:38Z<p>Please don't use either of those methods for specifying font-size. They were deprecated for good reason. It is nigh-impossible to create a consistent look and feel across platforms using the methods you described -- not to mention that you become completely dependent on the browser vendors for what they specify as the values for each of these.</p>
<p>Instead, use ems or percentages. You will get a much more consistent appearance, as well as having much finer control over the sizes of fonts your design demands.</p>
http://stackoverflow.com/questions/1395978/how-does-google-maps-print-work/1395995#13959951Answer by bigmattyh for How does google maps print work?bigmattyh2009-09-08T19:54:32Z2009-09-08T19:54:32Z<p>View Source -> Search for "@media print".</p>
<p>The google maps page defines a separate layout for print styles in the <style> declaration at the top of the page. Their engineers have done a <em>really</em> fine job of obfuscating as much of the content as possible.</p>
http://stackoverflow.com/questions/1386947/div-attached-to-bottom-of-viewport/1395633#13956330Answer by bigmattyh for DIV Attached to Bottom of Viewportbigmattyh2009-09-08T18:43:49Z2009-09-08T18:49:52Z<p>I think you're going to run into problems if you try to specify a height on your upper div. It gets complicated and messy to do it this way.</p>
<p>Try this: </p>
<p>On your upper content div, don't set a height; but <em>do</em> set bottom-padding to 100px, or some over value that allows for the bottom div to display its full content without overlapping. This way, your main content will flow normally, and take up just as much space as it needs, but it won't be interfered with by the bottom div.</p>
http://stackoverflow.com/questions/1387341/jquery-disable-form-fields/1387343#13873433Answer by bigmattyh for jQuery - Disable Form Fieldsbigmattyh2009-09-07T02:35:39Z2009-09-07T03:40:04Z<pre><code><script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#suburb").blur(function() {
if ($(this).val() != '')
$("#post_code").attr("disabled", "disabled");
else
$("#post_code").attr("disabled", "");
});
$("#post_code").blur(function() {
if ($(this).val() != '')
$("#suburb").attr("disabled", "disabled");
else
$("#suburb").attr("disabled", "");
});
});
</script>
</code></pre>
<p>You'll also need to add a value attribute to the first option under your select element:</p>
<pre><code><option value=""></option>
</code></pre>
http://stackoverflow.com/questions/1386531/css-increase-page-font-size/1386572#13865729Answer by bigmattyh for CSS - Increase Page Font Sizebigmattyh2009-09-06T20:02:11Z2009-09-06T20:05:11Z<p>Three things to achieve this:</p>
<p>Specify the overall font-size in the <body> tag. For example:</p>
<pre><code>body { font-size: 100%; }
</code></pre>
<p>Don't use pixels to specify font-size anywhere else in the document.</p>
<pre><code>p.somePara { font-size: 120%; }
p.anotherPara { font-size: 1.4em; }
</code></pre>
<p>Attach an event handler to this image, to adjust the font size accordingly. Using jQuery, for example:</p>
<pre><code>$("#largerTextImage").click(function() {
$("body").css("fontSize", "120%");
});
</code></pre>
<p>Done.</p>
http://stackoverflow.com/questions/1384406/python-convert-seconds-to-hhmmss/1384417#13844173Answer by bigmattyh for Python: convert seconds to hh:mm:ssbigmattyh2009-09-05T22:34:24Z2009-09-05T23:09:32Z<p>Have you read up on the <a href="http://docs.python.org/library/datetime.html" rel="nofollow">datetime</a> module?</p>
<p><strong>Edit/update:</strong> SilentGhost's answer has the details my answer leaves out. If you like this answer, +1 his as well (or instead). Reposted here:</p>
<pre><code>>>> a = datetime.timedelta(seconds=65)
datetime.timedelta(0, 65)
>>> str(a)
'0:01:05'
</code></pre>
http://stackoverflow.com/questions/1381530/help-with-a-jquery-country-state-list/1381701#13817011Answer by bigmattyh for Help with a jquery country/state listbigmattyh2009-09-04T21:43:44Z2009-09-04T23:47:47Z<p>(Coming at it from a different angle entirely:)</p>
<p>With all the options/possibilities you're describing here, it might be wise to scrap all the drop-downs and just use an autocomplete text field.</p>
http://stackoverflow.com/questions/1372205/php-break-out-of-a-frame/1372216#13722166Answer by bigmattyh for PHP - Break out of a framebigmattyh2009-09-03T08:50:08Z2009-09-03T08:50:08Z<p>Frames are a client-side issue. Javascript is the solution, because it is a client-side scripting language that has awareness of the browsing context. Frames are meaningless on the server-side.</p>
<p>So, only client-side code can do this. Not PHP.</p>
http://stackoverflow.com/questions/1360101/how-to-generate-temporary-urls-in-django/1360120#13601200Answer by bigmattyh for How to generate temporary URLs in Djangobigmattyh2009-09-01T01:08:13Z2009-09-01T01:08:13Z<p>You could set this up with URLs like:</p>
<pre><code>http://yoursite.com/temp/1a5h21j32
</code></pre>
<p>Your URLconf would look something like this:</p>
<pre><code>from django.conf.urls.defaults import *
urlpatterns = patterns('',
(r'^temp/(?P<hash>\w+)/$', 'yoursite.views.tempurl'),
)
</code></pre>
<p>...where tempurl is a view handler that fetches the appropriate page based on the hash. Or, sends a 404 if the page is expired.</p>
http://stackoverflow.com/questions/1352231/make-on-the-side-with-s-w-engineering-programming-skills/1352255#13522550Answer by bigmattyh for Make $$$ on the side with s/w engineering/programming skills?bigmattyh2009-08-29T20:08:06Z2009-08-29T20:08:06Z<p>Network with other programmers, in person, at conferences or in your town.</p>
http://stackoverflow.com/questions/1348067/navigate-dom-using-jquery-to-get-at-specific-elements/1348094#13480943Answer by bigmattyh for Navigate dom using jquery to get at specific elementsbigmattyh2009-08-28T16:25:29Z2009-08-28T17:08:21Z<p>Something like this should work. (Not tested for precise syntax, but the algorithm is solid.)</p>
<pre><code>// Bind an event to each of your checkboxes, for when they are clicked
$("input[type=checkbox]").click(function() {
if ($(this).attr("checked")) {
// The checkbox is checked, so find the associated text input and change its value
$(this).parents(".selectItem").find("input[type=text]").val("1");
} else {
// The checkbox is unchecked, so find the associated text input and remove its value
$(this).parents(".selectItem").find("input[type=text]").val("");
}
});
// Bind an event to each of your text inputs, for when they have text entered into them
$("input[type=text]").keypress(function() {
if ($(this).val() != "")) {
// There is something in the text input box, so check the associated checkbox
$(this).parents(".selectItem").find("input[type=checkbox]").attr("checked","checked");
} else {
// There is nothing in the text input box, so uncheck the associated checkbox
$(this).parents(".selectItem").find("input[type=checkbox]").attr("checked","");
}
});
</code></pre>
http://stackoverflow.com/questions/1347989/jquery-plugin-to-show-the-contents-of-a-specific-div-on-an-external-page/1348013#13480132Answer by bigmattyh for jQuery plugin to show the contents of a specific div on an external page??bigmattyh2009-08-28T16:12:11Z2009-08-28T16:12:11Z<p>As long as that external page is on the same domain, you can do this using <a href="http://docs.jquery.com/Ajax/load" rel="nofollow">jQuery's ajax load</a> function.</p>
<p>Par example:</p>
<pre><code>$("#currentDiv").load("/Customers.aspx?CustomerID=224 #CustomerDetail");
</code></pre>
http://stackoverflow.com/questions/1344922/keeping-transmission-down-to-a-minimum-with-javascript/1344924#13449243Answer by bigmattyh for Keeping transmission down to a minimum with javascriptbigmattyh2009-08-28T03:43:58Z2009-08-28T03:43:58Z<p>Start with John Resig's <a href="http://ejohn.org/blog/javascript-micro-templating/" rel="nofollow">JavaScript Micro-Templating</a>.</p>
http://stackoverflow.com/questions/1343418/how-to-have-an-input-submit-value-on-several-lines-in-html/1343433#13434332Answer by bigmattyh for How to have an Input submit value on several lines in HTMLbigmattyh2009-08-27T19:53:27Z2009-08-27T19:53:27Z<p>You can use the <button> element, which allows for styling (and text-wrapping).</p>
<p>Only problem with that is that if you have multiple button elements on the same page, you will potentially run into issues with IE6 passing name/value pairs to the server incorrectly.</p>
http://stackoverflow.com/questions/1332406/better-way-to-right-align-text-in-html-table/1332648#13326485Answer by bigmattyh for Better way to right align text in HTML Tablebigmattyh2009-08-26T06:16:01Z2009-08-27T05:28:51Z<p>To answer your question directly: <strong>no</strong>. There is no more simple way to get a consistent look and feel across all modern browsers, without repeating the class on the column. <em>(Although, see below re: nth-child.)</em></p>
<p>The following is the most efficient way to do this.</p>
<p>HTML:</p>
<pre><code><table class="products">
<tr>
<td>...</td>
<td>...</td>
<td class="price">10.00</td>
<td>...</td>
<td>...</td>
</tr>
<tr>
<td>...</td>
<td>...</td>
<td class="price">11.45</td>
<td>...</td>
<td>...</td>
</tr>
</table>
</code></pre>
<p>CSS:</p>
<pre><code>table.products td.price {
text-align: right;
}
</code></pre>
<p><strong>Why you shouldn't use nth-child:</strong> </p>
<p>The CSS3 pseudo-selector, nth-child, would be perfect for this -- and much more efficient -- but it is impractical for use on the actual web as it exists today. <a href="http://kimblim.dk/css-tests/selectors/" rel="nofollow">It is not supported by several major modern browsers</a>, including all IE's from 6-8. Unfortunately, this means that nth-child is unsupported in <a href="http://www.w3schools.com/browsers/browsers_stats.asp" rel="nofollow">a significant share</a> (at least 40%) of browsers today.</p>
<p>So, nth-child is awesome, but if you want a consistent look and feel, it's just not feasible to use.</p>
http://stackoverflow.com/questions/1331591/given-a-background-color-black-or-white-text/1331621#13316212Answer by bigmattyh for Given a background color, black or white text?bigmattyh2009-08-25T23:47:30Z2009-08-25T23:47:30Z<p>Here is an algorithm that can be used to calculate a luminosity contrast ratio of your text:</p>
<p><a href="http://juicystudio.com/services/aertcolourcontrast.php" rel="nofollow">http://juicystudio.com/services/aertcolourcontrast.php</a></p>
<p>You could use this formula with white and black values to calculate which gives you the higher ratio, and thus more readable text.</p>
http://stackoverflow.com/questions/1331026/is-it-ok-to-ask-an-interviewer-a-technical-question/1331074#13310743Answer by bigmattyh for Is it ok to ask an interviewer a technical question?bigmattyh2009-08-25T21:21:09Z2009-08-25T21:21:09Z<p>Asking questions to get a better feel for the environment you'd be working in makes you an inquisitive candidate. OK.</p>
<p>Asking questions to test their technical chops makes you an arrogant tool. Not OK.</p>
http://stackoverflow.com/questions/1319532/which-attribute-of-a-div-tag-should-reference-the-css/1319537#131953713Answer by bigmattyh for Which attribute of a <div> tag should reference the CSS?bigmattyh2009-08-23T20:56:38Z2009-08-23T20:56:38Z<p>Your CSS syntax is incorrect.</p>
<p>If you want to access this div, you can do it like this:</p>
<pre><code>/* By class: */
.hidden {
display: none;
}
/* By ID: */
#repair_complete {
display: none;
}
</code></pre>
<p>Note that to access an element by class you use a dot before the class name. You use a hash before the ID.</p>
http://stackoverflow.com/questions/1892602/cpu-serial-numberComment by bigmattyh on cpu serial numberbigmattyh2009-12-12T07:02:38Z2009-12-12T07:02:38ZNot sure why the vote to move to superuser.com -- he's asking how to do it in C.http://stackoverflow.com/questions/1800025/whats-limiting-my-php-resources/1800045#1800045Comment by bigmattyh on What's limiting my PHP resources?bigmattyh2009-11-25T21:24:27Z2009-11-25T21:24:27ZI'm running this under fastcgi, via nginx. I've updated my post to give this (relevant) info. Thanks!http://stackoverflow.com/questions/1701822/making-a-variable-value-positive/1701844#1701844Comment by bigmattyh on making a variable value positivebigmattyh2009-11-09T15:43:54Z2009-11-09T15:43:54ZA negative negative is positive. So -(-900) == 900.http://stackoverflow.com/questions/1670213/whats-the-best-editor-to-code-fast-in-htmlComment by bigmattyh on What's the best editor to code fast in html?bigmattyh2009-11-03T21:40:51Z2009-11-03T21:40:51ZThis appears to be a spam comment and response.http://stackoverflow.com/questions/1670213/whats-the-best-editor-to-code-fast-in-html/1670249#1670249Comment by bigmattyh on What's the best editor to code fast in html?bigmattyh2009-11-03T21:40:19Z2009-11-03T21:40:19ZYeah, I call shenanigans. They both registered today, and were last seen within 3 minutes of each other too.http://stackoverflow.com/questions/1628949/to-find-first-n-prime-numbers-in-python/1628981#1628981Comment by bigmattyh on To find first N prime numbers in pythonbigmattyh2009-10-27T06:28:03Z2009-10-27T06:28:03ZYou can make this more efficient if you replace the xrange with (2, (possibleprime // 2), 1) -- since there's no need to test divisors that are greater than half of the number.http://stackoverflow.com/questions/1605295/a-beginners-question-on-web-technologiesComment by bigmattyh on A beginner's question on web technologies.bigmattyh2009-10-24T17:18:54Z2009-10-24T17:18:54Z@all: Touché. It's easy to misinterpret tone on the interwebs. Carry on.http://stackoverflow.com/questions/1605295/a-beginners-question-on-web-technologiesComment by bigmattyh on A beginner's question on web technologies.bigmattyh2009-10-22T06:18:02Z2009-10-22T06:18:02Z@annakata: That's totally unnecessary and rude. -1.http://stackoverflow.com/questions/1553342/custom-event-in-jquery-that-isnt-bound-to-a-dom-element/1556955#1556955Comment by bigmattyh on Custom event in jQuery that isn't bound to a DOM element?bigmattyh2009-10-14T05:18:00Z2009-10-14T05:18:00ZIt's just a convention that works. I prefer it over using document or body because it acts sort of like a sterile clearinghouse for events -- I know everything that's in it, and there's less likelihood of something bad unwanted happening by accident. Can you explain why you think it's a bad idea?http://stackoverflow.com/questions/1555622/jquery-and-links-strange-situationComment by bigmattyh on JQuery and links - strange situationbigmattyh2009-10-12T17:05:37Z2009-10-12T17:05:37ZThat might be your problem -- put the code in a $(document).ready() block.http://stackoverflow.com/questions/1532760/good-high-level-python-ftp-http-lib/1533029#1533029Comment by bigmattyh on Good high-level python ftp/http lib?bigmattyh2009-10-07T21:19:54Z2009-10-07T21:19:54ZIt doesn't matter <i>that much</i> whether a project has recent commits. Many mature projects reach a level of stability, where the features are complete and the bugs have been squashed.http://stackoverflow.com/questions/1499421/jquery-accessing-changing-value-attribute-of-an-elementComment by bigmattyh on jquery accessing/changing value attribute of an elementbigmattyh2009-09-30T17:03:34Z2009-09-30T17:03:34ZShow us your HTML.http://stackoverflow.com/questions/1482829/css-style-not-applying-in-internet-explorer-but-works-well-in-firefox/1482841#1482841Comment by bigmattyh on Css style not applying in Internet Explorer, but works well in firefoxbigmattyh2009-09-27T05:30:45Z2009-09-27T05:30:45ZThe problem was highlighted in buti-oxa's answer. A td must go inside a tr, and a tr must go inside a table -- you cannot put a td directly inside a div.http://stackoverflow.com/questions/1480588/input-size-vs-width/1480651#1480651Comment by bigmattyh on input size Vs widthbigmattyh2009-09-26T17:32:28Z2009-09-26T17:32:28ZWhich doctypes will the size attribute force into quirks mode? Please explain.http://stackoverflow.com/questions/1449074/is-there-a-way-of-making-normal-links-automatically-load-through-ajax-rather-tha/1449087#1449087Comment by bigmattyh on Is there a way of making normal links automatically load through ajax, rather than normally?bigmattyh2009-09-21T17:21:33Z2009-09-21T17:21:33ZHard to tell without seeing the content of the pages that you're loading. Have you tried loading a simple page, like <html><head></head><body>Test</body></html>?