Search Results

3
votes

What are the quickest and easiest ways to ensure existing web pages display well on mobile platforms?

Opera has an option to view pages as through a mobile device. I've found it useful in the past. …
4
votes

Typical pitfalls of cross-browser compatibility

CSS - largely sorted out in the modern browsers, but still an issue - particularly as pertains to layout. Note that this is not critical - but it is a compatibility issue I almost always en …
0
votes

“No symbols loaded for the current document” Visual Studio 2008 Javascript Debugging

I sometimes have this problem with external js files - it is caused as a result of the browser cache holding onto an old copy of the file. Forcing a refresh of the page linking to the javascript so …
2
votes

Validate inputs that are not inside a form with jQuery Validation plugin

You can use this plugin: jQuery Validator Description from the author: A light, extensible, c …
1
vote

Purely as an experiment, I am trying to make it absolutely impossible to do anything but enter more data into an input field; feasible?

How about checking the inputted data, running a comparison on the new input, and refusing anything that isn't an extension of what was already there? A little lengthy, perhaps, especially as the fi …
2
votes

Javascript closure / variable scope question - I know it works, but why?

In a word, yes. Spot on. …