User Tom - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T22:56:57Zhttp://stackoverflow.com/feeds/user/20http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/222841/most-efficient-way-to-convert-an-htmlcollection-to-an-array4Most efficient way to convert an HTMLCollection to an ArrayTom2008-10-21T18:04:53Z2009-12-09T08:21:29Z
<p>Is there a more efficient way to convert an HTMLCollection to an Array, other than iterating through the contents of said collection and manually pushing each item into an array?</p>
http://stackoverflow.com/questions/53802/what-is-the-best-tool-to-benchmark-my-javascript2What is the best tool to benchmark my JavaScript?Tom2008-09-10T11:33:53Z2009-11-30T22:13:34Z
<p>I'm currently working on a JavaScript tool that, during the course of its execution, will ultimately traverse each node in the DOM. Because this has potential to be a very expensive task, I'd like to benchmark the performance of this script.</p>
<p>What's the best, free tool for benchmarking a script such as this across the major browsers? Ideally, I'd like the tool (or set of tools, even):</p>
<ul>
<li>
**To generate some form of report based on the results of the test.** It can be as simple as a table showing execution times, or as complex as generating some form of a chart. Either way is fine.
</li>
<li>
**To be free.** it's not that I don't believe in paying for software, it's just that I don't have a major need for a tool like this in my typical day-to-day tasks.
</li>
</ul>
<p>If possible, I'd also like the tool to generate varying levels of complex pages so that I can stress test a set of DOMs. This isn't a necessity - if I need to do so, I can write one myself; however, I'd figure I'd poll the community first to see if something already exists.</p>
http://stackoverflow.com/questions/6847/defensive-programming/6866#68663Answer by Tom for Defensive programmingTom2008-08-09T18:05:09Z2009-11-23T23:51:15Z<p>Similar to abyx, in the team I am on developers always use unit testing and code reviews. In addition to that, I also aim to make sure that I don't incorporate code that people <em>may</em> use - I tend to write code only for the basic set of methods required for the object at hand to function as has been spec'd out. I've found that incorporating methods that may never be used, but provide functionality can unintentionally introduce a "backdoor" or unintended/unanticipated use into the system.</p>
<p>It's much easier to go back later and introduce methods, attributes, and properties for which are asked versus anticipating something that may never come.</p>
http://stackoverflow.com/questions/20564/what-constitutes-beautiful-code16What constitutes beautiful code?Tom2008-08-21T17:13:40Z2009-11-19T18:01:28Z
<p>For anyone that is passionate about software development, I'm of the opinion that you should always strive to write beautiful code; however, <strong>is there a clear definition of what beautiful code really is?</strong></p>
<p>On one hand, I see elegant code being something that's easy to read while simultaneously solving the problem at hand in the most efficient way possible. It seems like readable code often comes at the expense of, for example, creating several new variables in order to represent the data with which you're working. Depending on your platform (or depending on how picky you are), creating these variables could be considered to be a performance hit. </p>
<p>On the other hand, this brings up another perspective that I've often seen that defines beautiful code as code that succinctly and efficiently solves the given problem. It can be argued, though, that succinct code may come at the sake of readability and thus ultimately detracts from the attractiveness of the code.</p>
<p>I personally want to be able to write expressive, effective, and elegant code, but I often find myself debating if adding a couple of more variables to improve the readability of the code three months later really does improve (or pollute) the code.</p>
http://stackoverflow.com/questions/60724/paypal-versus-amazon-honor-system4PayPal versus Amazon Honor SystemTom2008-09-13T17:47:44Z2009-11-16T14:24:34Z
<p>I'm currently planning to integrate a donation system into a web page for a project that I manage. Currently, there are two services I'm looking at using - PayPal and Amazon Honor System.</p>
<p>I want the system to be as easy-to-use - basically, if people choose to donate, I'd like them to have to do so in as few steps as possible and in a manner that is extremely clear (as in there aren't convoluted steps or form fields to fill out).</p>
<p>Does anyone have a recommendation on which service is better to use, and why said service is better than the other?</p>
http://stackoverflow.com/questions/283749/the-vb-net-with-statement-embrace-or-avoid4The VB.NET 'With' Statement - embrace or avoid?Tom2008-11-12T12:09:32Z2009-11-12T15:31:10Z
<p>At work, I'm frequently working on projects where numerous properties of certain objects have to be set during their construction or early during their lifetime. For the sake of convenience and readability, I often use the <code>With</code> statement to set these properties. I find that</p>
<pre><code>With Me.Elements
.PropertyA = True
.PropertyB = "Inactive"
' And so on for several more lines
End With
</code></pre>
<p>Looks much better than</p>
<pre><code>Me.Elements.PropertyA = True
Me.Elements.PropertyB = "Inactive"
' And so on for several more lines
</code></pre>
<p>for very long statements that simply set properties.</p>
<p>I've noticed that there are some issues with using <code>With</code> while debugging; however, <strong>I was wondering if there were any compelling reasons to avoid using <code>With</code> in practice</strong>? I've always assumed the code generated via the compiler for the above two cases is basically the same which is why I've always chosen to write what I feel to be more readable. </p>
http://stackoverflow.com/questions/494016/best-way-to-transparently-log-downloads1Best way to transparently log downloads?Tom2009-01-30T00:01:53Z2009-11-09T20:52:42Z
<p>I have a personal project that's been online for sometime now. I've been keeping a tally of downloads by doing this:</p>
<ul>
<li>When the user clicks the download link, it hits a PHP script that writes some information to a table.</li>
<li>Once the data is written, the script returns the path to the actual file.</li>
<li>The user then has the ability to save the file to their hard disk as if it was any other download.</li>
</ul>
<p>This has worked well enough for sometime; however, it prevents users from being able to <code>right-click > save target as...</code> because they'll actually just see <code>download.php</code> appear in the "File Save.." dialog. Thus, the only way to download the project is to left-click on the link.</p>
<p>I'd like to improve the process so that a user can download the project using whatever method with which s/he is most comfortable. So, what are some better ways to transparently log downloads without getting in the user's way? </p>
<p><strong>For what it's worth</strong>, the machine is a standard LAMP stack, so no .NET options here.</p>
http://stackoverflow.com/questions/240836/dynamically-invoke-properties-by-string-name-using-vb-net3Dynamically invoke properties by string name using VB.NETTom2008-10-27T17:54:39Z2009-11-09T20:50:54Z
<p>I'm currently working on a project where a section of the code looks like this:</p>
<pre><code>Select Case oReader.Name
Case "NameExample1"
Me.Elements.NameExample1.Value = oReader.ReadString
....
Case "NameExampleN"
Me.Elements.NameExampleN.Value = oReader.ReadString
....
End Select
</code></pre>
<p>It continues on for a while. The code is obviously verbose and it <em>feels</em> like it could be improved. Is there any way to dynamically invoke a property in VB.NET such that something like this can be done:</p>
<pre><code>Dim sReadString As String = oReader.ReadString
Me.Elements.InvokeProperty(sReadString).Value = sReadString
</code></pre>
http://stackoverflow.com/questions/446743/best-book-to-get-intimately-familiar-with-the-net-framework3Best book to get intimately familiar with the .NET framework?Tom2009-01-15T13:37:16Z2009-11-09T20:50:24Z
<p>In my spare time, I do a bit of home development primarily using free tools (Eclipse, Java, PHP, Ruby, Rails, etc.) as they are with what I'm most familiar; however, for my 9-to-5, I work as a developer in the .NET environment using all Microsoft tools. Our product is built using a framework that sits on top of .NET and that was developed in-house. </p>
<p>Although I've no complaints about our framework or what I do on a day-to-day basis, I'd like to get in deeper to the .NET Framework. I've got a personal copy of Visual Studio and am comfortable with all of the Microsoft Tools, though I'm less familiar with the framework and available libraries. <a href="http://rads.stackoverflow.com/amzn/click/0596517742" rel="nofollow">I know that similar questions have been asked</a> on this topic, but I'm hoping that the community can suggest book (or books) based on exactly what I'm looking for...</p>
<ul>
<li><p>I develop web applications, so if the book is primarily focused on ASP.NET, then that's okay. If the book(s) primary focus is on desktop application programming with a side of ASP.NET, that's fine, too. My primary goal is to learn more about the .NET Framework and the associated libraries - not how Web Forms or Windows Forms are built. Whatever means used to that end are fine with me.</p></li>
<li><p>I <strong>don't</strong> want a book that gives lengthy tutorials on Windows Forms, controls, Web Forms, and/or any of the beginner or intro stuff. If there's more than one chapter dedicated to how to drop controls on a form and program events, then I'm not interested.</p></li>
<li><p>I'm indifferent about the language used in the book.</p></li>
<li><p>I'd like the book to have various assignments and/or walkthroughs of building full applications using the framework versus a physical copy of the API reference. Again, desktop or web-based programming is not really a big deal, but I lean in the direction of web applications.</p></li>
<li><p>If possible, I'd prefer the book not have contrived examples, but stuff that's a little more concrete and directly applicable to real world programming. Simple examples on using <code>StringBuilder</code> as demonstrated through the use of concatenating all of the Star Trek character names are what I wanna avoid.</p></li>
</ul>
<p>I'm comfortable with the .NET languages and the tools so I don't want primers on them. Above all else, I want to become more familiar with what is available in the .NET Framework such that I'm comfortable enough building applications outside of a framework built on top of .NET.</p>
http://stackoverflow.com/questions/1680789/jquery-find-returning-an-empty-string-in-google-chrome0jQuery find() returning an empty string in Google ChromeTom2009-11-05T14:04:51Z2009-11-05T14:35:43Z
<p>I'm using jQuery to setup an Ajax request that grabs an XML feed from a PHP script and then parses some information out of the feed and inserts it into the DOM. <strong>It works fine in Firefox; however, in Chrome, I am getting an empty string for the <code>title</code> element.</strong></p>
<p>Here's the basic setup of the Ajax request:</p>
<pre><code>$.get('feed.php', function(oXmlDoc) {
$(oXmlDoc).find('entry').each(function() {
$(this).find('title').text();
$(this).find('id').text();
// do other work...
});
});
</code></pre>
<p>For what it's worth, here's the PHP script that's grabbing data from the feed. I'm using cURL because I'm making the request across domains (and because it was a quick and dirty solution for the problem at hand).</p>
<pre><code>$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $str_feed_url);
curl_setopt($curl, CURLOPT_HEADER, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
$xml = curl_exec($curl);
curl_close($curl);
echo $xml;
</code></pre>
<p>The XML data is being returned correctly and I can see the values of the sibling nodes in Chrome (such as <code>ID</code>), but, for whatever reason, I continue to get an empty string for the <code>title</code> node.</p>
<p><strong>Edit:</strong> As requested, here's a fragment of the relevant XML:</p>
<pre><code><entry>
<id>http://TheAddress.com/feed/01</id>
<title type="text">The Title of the Post</title>
<author><name>Tom</name></author>
<published>2009-11-05T13:46:44Z</published>
<updated>2009-11-05T14:02:19Z</updated>
<summary type="html">...</summary>
</entry>
</code></pre>
http://stackoverflow.com/questions/1601873/how-to-receive-xml-in-ie8-with-mootools/1603072#16030720Answer by Tom for how to receive XML in IE8 with mootoolsTom2009-10-21T19:31:19Z2009-10-21T19:31:19Z<p>I had a similar issue like this sometime ago using jQuery. The problem was that, in IE, the incoming response data needed to be handled by the <code>Microsoft.XMLDOM</code> ActiveX object. </p>
<p>The general steps are to:</p>
<ol>
<li><p>Instantiate the ActiveX object. </p>
<p><code>var oXmlDoc = new ActiveXObject("Microsoft.XMLDOM");</code></p></li>
<li><p>Pass it the incoming response data and load it.</p>
<p><code>oXmlDoc.loadXML(sXmlResponseData);</code></p></li>
<li><p>Parse it as needed.</p></li>
</ol>
<p>You can check out the full resolution <a href="http://stackoverflow.com/questions/624723/getting-htmlunknownelement-with-jquery-find-and-an-xml-document/627224#627224">here</a>.</p>
http://stackoverflow.com/questions/1600398/large-text-in-textarea-freezes-computer/1600415#16004154Answer by Tom for Large text in TextArea freezes computerTom2009-10-21T12:10:01Z2009-10-21T12:10:01Z<p>The maximum size for a <code>textarea</code> in Firefox is 64K (it could be just 32K, I can't recall). <strong>600,000 characters is larger than that.</strong> If the size of the text that you're pasting into the <code>textarea</code> does in fact exceed that size, then there's nothing you can do about it.</p>
<p>Of course, one alternative would be to put some type of restriction on the data going into the field and then give the user some feedback as to why their data won't fit.</p>
http://stackoverflow.com/questions/1598560/detect-when-autocomplete-is-visible/1600202#16002020Answer by Tom for Detect when autocomplete is visibleTom2009-10-21T11:21:10Z2009-10-21T11:27:03Z<p>I don't know if you're using a specific plug-in or if you have the ability to easily modify the autocomplete source code, but I would attempt to do something like this:</p>
<ul>
<li>Find the function that is used to trigger the display of the autocomplete</li>
<li>Set a boolean value when the autocomplete's visibility is triggered (true for visible, false for not)</li>
<li>Check the status of the boolean value whenever you're attempting to catch enter (or tab)</li>
</ul>
<p>Note that you would have to make the boolean value publicly accessible in the context of the autocomplete object. </p>
<p>Again, without knowing the specifics if your implementation it's difficult to say how best to change it but it <em>could</em> work something like this:</p>
<pre><code>var Autocomplete = {
bIsVisible: false,
display: function() {
// toggle visibility of the autocomplete
this.bIsVisible = !this.bIsVisible;
}
}
</code></pre>
<p>You would could then utilize it by doing something like this:</p>
<pre><code>alert(Autocomplete.bIsVisible); // returns false
Autocomplete.display(); // triggers the display of the autocomplete
alert(Autocomplete.bIsVisible); // returns true
</code></pre>
http://stackoverflow.com/questions/1594095/jquery-click-handler/1594218#15942180Answer by Tom for jquery click handlerTom2009-10-20T12:20:13Z2009-10-20T12:20:13Z<p>Just as others have noticed, I think that there is something wrong with the code that you're using to dynamically generate the anchors. </p>
<p>Nonetheless, here's an example that <em>should</em> achieve the result you're aiming for:</p>
<pre><code>$(document).ready(function(){
var eNav = document.getElementById('nav');
var aLink = null;
for(var i = 0; i < 5; i++) {
aLink = document.createElement('a');
aLink.href = 'javascript:;';
aLink.id = i;
aLink.appendChild(document.createTextNode('Link'));
eNav.appendChild(aLink);
}
$("#nav a").click(function(event){
alert('Clicked '+ event.target.id);
return false;
});
});
</code></pre>
http://stackoverflow.com/questions/1594023/what-is-the-intended-purpose-of-eval-in-javascript/1594051#15940514Answer by Tom for What is the intended purpose of eval in JavaScript?Tom2009-10-20T11:48:05Z2009-10-20T11:53:24Z<p><code>eval()</code> provides access to the JavaScript compiler and this ultimately allows for code to be executed at a later time. The arguments passed to the function are passed to the JavaScript compiler after which the code is executed.</p>
<p>Developers argue about the security of <code>eval()</code>. It <em>is</em> less secure, but if you're absolutely sure your input is sanitized before passing it along, then it shouldn't be a problem.</p>
<p>Also, the results of <code>eval()</code> are generally slower because the code has not yet been compiled nor cached. There's obviously going to be a performance hit for using the function.</p>
<p>It's also difficult to debug code that results from the use of <code>eval()</code> because there is little-to-no contextual information (think line numbers) about the code that is ultimately executed.</p>
<p>In terms of web development, one of the current most popular uses of <code>eval()</code> is to deserialize a JSON string <em>usually</em> in the context of Ajax applications; however, this isn't to say that there aren't many other uses.</p>
http://stackoverflow.com/questions/1583775/creating-a-draggable-widget-system/1583809#15838090Answer by Tom for Creating a Draggable Widget SystemTom2009-10-18T02:13:50Z2009-10-18T02:13:50Z<p><a href="http://script.aculo.us/" rel="nofollow">Scriptaculous</a> has a decent <a href="http://wiki.github.com/madrobby/scriptaculous/draggable" rel="nofollow">drag and drop</a> implementation. It's based on <a href="http://www.prototypejs.org/" rel="nofollow">Prototype</a> which has a pretty good community. </p>
<p>jQuery's <em>does</em> seem to be a bit larger and a more active as of late so you may want to stick with its <a href="http://jqueryui.com/demos/draggable/" rel="nofollow">draggable</a> library.</p>
http://stackoverflow.com/questions/1555675/javascript-overwrite-array/1555693#15556930Answer by Tom for JavaScript: Overwrite arrayTom2009-10-12T16:52:03Z2009-10-12T16:52:03Z<p>I'm not exactly sure what you're trying to do, but there are a couple of ways to go about resetting an array.</p>
<p>You could just iterate through the existing array and set each index equal to null (or an empty string or 0 or whatever value you consider to be a reset):</p>
<pre><code>for(var i = 0; i < arr.length; i++) {
arr[i] = null;
}
</code></pre>
<p>You could also just update the existing reference to a new instance of an object:</p>
<pre><code>arr = [];
</code></pre>
http://stackoverflow.com/questions/1533568/what-is-the-correct-way-to-write-html-using-javascript/1533598#153359819Answer by Tom for What is the correct way to write HTML using Javascript?Tom2009-10-07T19:14:57Z2009-10-07T19:14:57Z<p><code>document.write()</code> doesn't work with XHTML. It's executed <em>after</em> the page has finished loading and does nothing more than write out a string of HTML. </p>
<p>Since the actual in-memory representation of HTML is the DOM, the best way to update a given page is to manipulate the DOM directly.</p>
<p>The way you'd go about doing this would be to programmatically create your nodes and then attach them to an existing place in the DOM. For [purposes of a contrived] example, assuming that I've got a <code>div</code> element maintaining an <code>ID</code> attribute of "header," then I could introduce some dynamic text by doing this:</p>
<pre><code>// create my text
var sHeader = document.createTextNode('Hello world!');
// create an element for the text and append it
var spanHeader = document.createElement('span');
spanHeader.appendChild(sHeader);
// grab a reference to the div header
var divHeader = document.getElementById('header');
// append the new element to the header
divHeader.appendChild(spanHeader);
</code></pre>
http://stackoverflow.com/questions/183835/getting-paid-for-seo-optimization7Getting paid for SEO optimizationTom2008-10-08T17:11:50Z2009-08-18T15:23:56Z
<p>A friend of mine works for a small web development firm. They have a pre-packaged product that they basically brand with respect to each client that they take on. Recently, their clients have been interested in SEO, but few of the people at the firm know enough about web standards, search engines, etc. to do enough effective SEO on their own. Recently, they contacted me to see if I'd be interested in doing some freelance SEO work for them.</p>
<p>I'm interested in doing this; however, I could have a couple of concerns and am hoping that some of you have some experience with this and feedback to offer.</p>
<ul>
<li>As of now, I am unsure how well-organized the XHTML is for their pre-packaged product. I'm going to be looking more into it this weekend, but I've also mentioned to them that SEO depends on a number of factors - such as how well the HTML is structured - and, thus, some of the optimization will only be as great as the weakest link.</li>
<li>I've expressed that a caveat of SEO is that it's very hard (impossible, even?) to promise that a customer's site will be the first, second, or third listing on, say, Google. It's even difficult to promise that they will be listed on the first page (because of factors such as the nature of the business, keywords, etc). All I can offer is that it will be more optimized when I'm done with it, than not.</li>
<li>My biggest issue that I want to be honest in that I can do the work that will optimize the site beyond what's already there, but I can't promise a tangible result such as "your site will be on the front page in two months."</li>
</ul>
<p>What suggestions and feedback do you have when faced with a situation such as this? I apologize ahead of time is this question is too far out from under the programming question umbrella.</p>
http://stackoverflow.com/questions/1164577/jquery-ajax-how-to-check-duplicate-name/1164606#11646063Answer by Tom for jquery ajax- How to check duplicate name Tom2009-07-22T11:21:47Z2009-07-23T01:13:50Z<p>Your question is confusing because you're using the same variable name, <code>data</code>, outside of your request as well as in the request callback. </p>
<p>I'm not sure if you're asking to check for duplication based on data that has already been submitted and is back on the page, data that exists on the server, or if the data's simply "yes". </p>
<p>Based on the code you provided, it would <em>appear</em> that data is considered to be duplicated if the server returns <code>yes</code> once the <code>POST</code> completes.</p>
<p>Either way, maybe this will help:</p>
<pre><code>$(function() {
$('#name').blur(function() {
duplicate($('#name').val());
});
});
function duplicate(sData) {
var sDuplicateValue = ...; // assign this whatever constitutes a duplicate value
if(isDataDuplicate(sData, sDuplicateValue)) {
// you have duplicate data
}
$.post('test.php', { name: sData }, function(sResposeData) {
/* because of question ambiguity, i don't know if you want to compare
* sData and sResponseData, or sResponseData and "yes." if it's the latter,
* just do isDataDuplicate(sResponseData, "yes"); otherwise, do this:
*/
if(isDataDuplicate(sData, sResponseData) {
// it's the same..
}
});
}
function isDataDuplicate(sData, sDuplicateValue) {
if(sDuplicateValue === null) {
return sData === 'yes';
} else {
return sData === sDuplicateValue;
}
}
</code></pre>
http://stackoverflow.com/questions/345540/how-to-disable-a-select-box-not-inside-a-form/345554#3455543Answer by Tom for How to disable a select box not inside a form?Tom2008-12-05T23:58:21Z2009-07-22T12:57:44Z<p>Short answer: No, you don't need to have the select box within a form. </p>
<p>Where is your JavaScript currently included with respect to the <code>body</code> tag in your HTML? Remember that if you have inline JavaScript included in the head if your page, then it will fire as the page is loaded. At this point, the select box will not have been parsed and, thus, your code cannot access it in order to disable it.</p>
<p>I'm no fan of mixing JavaScript and markup together, but this demo should work for all intents and purposes.</p>
<pre><code><html>
<head>
<title>JavaScript Select Demo</title>
</head>
<body>
<select id="mySelect" onchange="updateChoice();">
<option value="1">First</option>
<option value="2" selected="">Second</option>
</select>
</body>
<script type="text/javascript">
document.getElementById('mySelect').disabled = true;
</script>
</html>
</code></pre>
<p>If, for whatever reason, you have to keep the script located in the page rather than an external file, you could setup an event handler to perform the same functionality after the page has loaded. Rather than keeping code at the bottom of the markup, you can include this in your head node:</p>
<pre><code> <head>
<title>JavaScript Select Demo</title>
<script type="text/javascript">
window.onload = function() {
document.getElementById('mySelect').disabled = true; ;
}
</script>
</head>
</code></pre>
<p>Lastly, rather than incorporate an <code>onchange</code> handler in the attributes of your markup, you could alternatively setup an event handler in your JavaScript to perform the same behavior. <a href="http://docs.jquery.com/Events/change" rel="nofollow">jQuery makes this really easy</a>.</p>
http://stackoverflow.com/questions/1164539/how-to-pass-a-nested-javascript-object-to-asp-net-mvc-action-method/1164563#11645631Answer by Tom for How to pass a nested JavaScript object to ASP.NET MVC Action Method?Tom2009-07-22T11:10:28Z2009-07-22T11:10:28Z<p><a href="http://en.wikipedia.org/wiki/Json" rel="nofollow">JSON</a> would be perfect for this. Basically, you'll want to convert your object to it's JSON representation and then send that across the wire. Once it's available on the server, you can process it however you like.</p>
<p>Crockford has a <a href="http://www.json.org/js.html" rel="nofollow">great article</a> on what JSON is, how to understand the notation, and he provides a tool to convert your objects to JSON notation.</p>
http://stackoverflow.com/questions/1143491/js-load-html-of-a-page-from-a-different-domain/1143594#11435940Answer by Tom for js: Load html of a page from a different domain.Tom2009-07-17T14:19:12Z2009-07-17T14:29:14Z<p>JavaScript isn't allowed to make cross-domain requests. It's a big security risk. Instead, you'll have to execute a script on the server and have it return the results to your JavaScript function.</p>
<p>For example, assuming that you're using JavaScript and PHP you could setup the application to work like this:</p>
<p>JavaScript initiates an Ajax request to a page (or script) located on your server. It passes any required parameters to this page. The following code is based on jQuery (for the sake of being concise), but the principles are the same regardless of your framework.</p>
<pre><code>var sParameters = " ... " // this is defined by you
$.ajax({
url: 'your-server-side-code.php',
processData: false,
data: sParameters,
success: function(sResponse) {
// handle the response data however you want
}
});
</code></pre>
<p>The server-side code will respond to the request and pass along the necessary parameters to the cross-domain website. PHP's <a href="http://us.php.net/curl" rel="nofollow">cURL library</a> is good for this.</p>
<pre><code>// very contrivuted cURL configuration for purposes of example...
$curl_connection = curl_init();
$str_url = "http://you-url.com";
curl_setopt($curl_connection, CURLOPT_URL, $str_url);
curl_setopt($curl_connection, CURLOPT_GET, 1);
// ... keep setting your options ...
$str_response = curl_exec($curl_connection);
curl_close($curl_connection);
</code></pre>
<p>When the cross-domain website responds, your server-side code can echo the response back to the initial request. This should probably be validated before responding back, but it's just an example.</p>
<pre><code>print_r($str_response);
</code></pre>
<p>A JavaScript response handler function can then parse the incoming response data. Note the success function in the first block of JavaScript code above.</p>
http://stackoverflow.com/questions/1143445/read-page-content-convert-to-json-enter-to-sql/1143542#11435421Answer by Tom for Read page content, convert to json, enter to SQL?Tom2009-07-17T14:11:30Z2009-07-17T14:11:30Z<p><strong>It's possible but only to a degree</strong>. You're going to need some server-side code to help you out. Without seeing your predefined format, it's tough to make any suggestions. </p>
<p>At an abstract level, I'm assuming that an event will be composed of a time, a date, and a location. From here, it would seem as if you'd need to break down the process into the following:</p>
<p><strong>Client-side</strong></p>
<ul>
<li>Find each time, date, and location.</li>
<li>For each of these, you're going to want to format them into your pre-defined representation.</li>
<li>Submit this data to the server.</li>
</ul>
<p><strong>Server-side</strong></p>
<ul>
<li>Perform any necessary validation or processing</li>
<li>Insert it into the database</li>
</ul>
http://stackoverflow.com/questions/1138894/javascript-css-woes-dom-styling/1138917#11389171Answer by Tom for Javascript CSS Woes - DOM StylingTom2009-07-16T16:56:13Z2009-07-16T16:56:13Z<p>I would specify a <code>classname</code> in the JavaScript source and let an external CSS file take care of actually applying the formatting to it.</p>
<p><strong>CSS</strong></p>
<pre><code>.styledElement {
font-weight: bold;
}
</code></pre>
<p><strong>JavaScript</strong></p>
<pre><code>var eItem = ctn(tmpItem.price);
eItem.className = "styledElement";
dv.appendChild(eItem);
</code></pre>
<p><a href="http://stackoverflow.com/questions/1138894/javascript-css-woes-dom-styling/1138919#1138919">Greg's</a> approach is also good especially if you have to do everything in the JavaScript source.</p>
http://stackoverflow.com/questions/1136111/how-do-i-create-a-separator-between-two-divs-with-prototype/1137148#11371482Answer by Tom for How do I create a separator between two DIVs with PrototypeTom2009-07-16T12:16:23Z2009-07-16T12:16:23Z<p>That separator is actually a table cell contained within a table row. It maintains a <code>background-color</code> and <code>background-image</code> to give it the effect similar to what you'd see in a desktop application.</p>
<p>I'm not sure to what extend you'd want to do this, but assuming that the table cell is already specified in the markup and it has the appropriate styles, you'd need to setup several things:</p>
<ul>
<li>A <code>mousedown</code> handler for registering when the user has clicked on the cell.</li>
<li>A <code>mousemove</code> handler for updating the position of the separator in context of the browser window.</li>
<li>A <code>mouseup</code> handler for knowing when to stop updating the location of the separator.</li>
</ul>
<p>There are variations on how to do this, but here's a very, very rough example:</p>
<pre><code>var bMouseIsDown = false;
Event.observe('separator', 'mousedown', function() {
bMouseIsDown = true;
});
Event.observe('separator', 'mouseup', function() {
bMouseIsDown = false;
});
Event.observe('separator', 'mousemove', function(evt) {
if(bMouseIsDown === true) {
var iX = Event.pointerX(evt);
var iOffsetX = iX - Position.page($('separator'))[0];
var iWidth = $('separator').getDimensions().width;
var iElementOffset = iWidth - iOffsetX;
$(this).setStyle({
left: iX - iElementOffset
});
}
});
</code></pre>
http://stackoverflow.com/questions/1013637/unexpected-caching-of-ajax-results-in-ie8/1013725#10137254Answer by Tom for Unexpected Caching of AJAX results in IE8Tom2009-06-18T16:30:26Z2009-06-18T16:30:26Z<p>As <a href="http://stackoverflow.com/questions/1013637/unexpected-caching-of-ajax-results-in-ie8/1013661#1013661">marr75</a> mentioned, <code>GET</code>'s are cached. </p>
<p>There are a couple of ways to combat this. Aside from modifying the response header, you can also append a randomly generated query string variable to the end of the targeted URL. This way, IE will think it is a different URL each time it is requested.</p>
<p>There are multiple ways to do this (such as using <code>Math.random()</code>, a variation on the date, etc).</p>
<p>Here's one way you can do it:</p>
<pre><code>var oDate = new Date();
var sURL = "/game/getpuzzleinfo?randomSeed=" + oDate.getMilliseconds();
$.get(sURL, null, function(data, status) {
// your work
});
</code></pre>
http://stackoverflow.com/questions/201768/mixing-jquery-and-yui-together-in-an-app-is-it-easily-possible/201811#2018116Answer by Tom for Mixing jQuery and YUI together in an app, is it easily possible?Tom2008-10-14T16:07:46Z2009-06-17T13:00:02Z<p>Speaking from some experience in developing a small tool myself, I've used YUI's rich control set with Prototype for DOM manipulation in the past and experienced no issues. Admittedly, this was a small tool that didn't use a wide array of the controls.</p>
<p>Even so, I'm always hesitant to use multiple frameworks on my web projects; however, if you're only using jQuery's DOM functionality and YUI's control functionality, then I think you're fine - there's not really a conflict of interest there. Plus, with jQuery's noConflict() mode and YUI's namespacing, the two frameworks really shouldn't trump one another.</p>
http://stackoverflow.com/questions/978821/best-practice-for-returning-cross-site-json-response1Best Practice for returning cross-site JSON responseTom2009-06-11T00:52:50Z2009-06-11T20:57:31Z
<p>I'm currently working on a small application that works like this:</p>
<ul>
<li>When the user clicks a link, an Ajax <code>GET</code> request is fired.</li>
<li>The request hits a server-side PHP script.</li>
<li>The script, which requests information for another domain, retrieves a <code>JSON</code> feed.</li>
<li>The feed is then echoed back to the client for parsing.</li>
</ul>
<p>I'm not really a PHP developer, so <strong>I am looking for some best practices with respect to cross-domain requests</strong>. I'm currently using <code>file<code>_</code>get<code>_</code>contents()</code> to retrieve the <code>JSON</code> feed and, although it's functional, it seems like a weak solution.</p>
http://stackoverflow.com/questions/978832/how-to-make-sure-the-css-work-fine-with-all-browsers-without-eye-testing-on-each/978839#9788391Answer by Tom for How to make sure the CSS work fine with all browsers without eye testing on each broswer?Tom2009-06-11T00:58:56Z2009-06-11T00:58:56Z<p>There's not really a standard way to do this - it's just the nature of the beast; however, Adobe is currently working on <a href="https://browserlab.adobe.com/index.html" rel="nofollow">BrowserLabs</a> which should help to solve this exact issue.</p>
http://stackoverflow.com/questions/60724/paypal-versus-amazon-honor-system/1742483#1742483Comment by Tom on PayPal versus Amazon Honor SystemTom2009-11-17T12:33:31Z2009-11-17T12:33:31ZWow. AHS has shut down since I last visited this question. Also, interesting trivia re:PayPal. That's awesome.http://stackoverflow.com/questions/1680789/jquery-find-returning-an-empty-string-in-google-chrome/1680890#1680890Comment by Tom on jQuery find() returning an empty string in Google ChromeTom2009-11-05T19:42:22Z2009-11-05T19:42:22ZI ended up needing to specify the Content-Type as rss+xml in the PHP script. $.get() ended up working just fine after that.http://stackoverflow.com/questions/1594095/jquery-click-handlerComment by Tom on jquery click handlerTom2009-10-20T12:15:04Z2009-10-20T12:15:04ZCould you post the code that's being used to dynamically generate the anchors?http://stackoverflow.com/questions/1555622/jquery-and-links-strange-situationComment by Tom on JQuery and links - strange situationTom2009-10-12T16:56:26Z2009-10-12T16:56:26ZWhere is this code included in your page - the footer, the header, or an external file?http://stackoverflow.com/questions/1555675/javascript-overwrite-array/1555699#1555699Comment by Tom on JavaScript: Overwrite arrayTom2009-10-12T16:54:42Z2009-10-12T16:54:42ZI don't think you need to explicitly state array1 = null. If you just update the reference, the garbage collector should recognize an instance that has no references pointing to it.http://stackoverflow.com/questions/1183328/jquery-validation-updating-error-messageComment by Tom on JQuery Validation - updating error messageTom2009-07-26T01:45:27Z2009-07-26T01:45:27ZIn what browser are you experiencing this behavior? It sounds like a caching issue.http://stackoverflow.com/questions/1183507/changing-window-position-with-javascript-to-a-specific-elementComment by Tom on Changing window position with javascript to a specific element?Tom2009-07-26T01:40:52Z2009-07-26T01:40:52ZIs this "list of elements" a true list (as in a list box) or is it a long list of something like div elements?http://stackoverflow.com/questions/1164838/text-decorations-in-cssComment by Tom on Text decorations in CSSTom2009-07-22T12:17:49Z2009-07-22T12:17:49ZI miss <marquee>http://stackoverflow.com/questions/1164480/sort-data-in-timeline-slider-with-ajax-phpComment by Tom on sort DATA in Timeline slider with AJAX & PHPTom2009-07-22T11:14:26Z2009-07-22T11:14:26ZIt would be helpful to know if you're using any particular JavaScript library (or none).http://stackoverflow.com/questions/1143646/integrating-js-in-build-processComment by Tom on Integrating js in build processTom2009-07-17T14:34:39Z2009-07-17T14:34:39ZWhat environment are you using? Sprockets helps out with this (<a href="http://getsprockets.org/" rel="nofollow">getsprockets.org</a>).http://stackoverflow.com/questions/1143445/read-page-content-convert-to-json-enter-to-sql/1143542#1143542Comment by Tom on Read page content, convert to json, enter to SQL?Tom2009-07-17T14:33:49Z2009-07-17T14:33:49ZIt'd be easiest if you have contorl of the markup. You could create a container (like a div), assign it classname (like "event"), and then leverage jQuery's selector power to iterate through the events (think of something like $('div.event').each(function() { // grab the title, date, location, and build up a string here });http://stackoverflow.com/questions/1138898/what-happened-to-my-page-titleComment by Tom on What happened to my page title?Tom2009-07-16T16:55:09Z2009-07-16T16:55:09ZIt's hard to say without seeing some code. Did you attempt to move the link to the bottom of the page using CSS, or did you alter the markup?http://stackoverflow.com/questions/978832/how-to-make-sure-the-css-work-fine-with-all-browsers-without-eye-testing-on-each/978837#978837Comment by Tom on How to make sure the CSS work fine with all browsers without eye testing on each broswer?Tom2009-06-11T00:59:11Z2009-06-11T00:59:11ZUpvoted for #3!http://stackoverflow.com/questions/749729/cant-store-xmldocument-in-table-column-with-data-type-xml/749966#749966Comment by Tom on Can't store XmlDocument in table column with data type 'xml'Tom2009-04-15T01:31:48Z2009-04-15T01:31:48Z@JP - thanks for the link. Glad to have this as a reference as it helps to explain the clashing that I was experiencing.http://stackoverflow.com/questions/749729/cant-store-xmldocument-in-table-column-with-data-type-xml/749965#749965Comment by Tom on Can't store XmlDocument in table column with data type 'xml'Tom2009-04-15T01:31:08Z2009-04-15T01:31:08ZThanks a lot - this ended up putting me on the right track. The client returns an XmlDocument, so I used XDocument.Parse() on the OuterXml string of the returned XmlDocument.