-
How to load jQuery programatically
Loading JavaScript dynamically, and knowing then the script is done loading, can be difficult. There are working solutions available, but it is also possible to write some code to solve the problem.
-
Check if string contains a character in C#
There are multiple ways of checking if a string contains a specific character in C#. There are methods built into the String class, and there are extension methods in System.Linq.
-
What is Device Pixel Ratio?
The device pixel ratio is the ratio between physical pixels and logical pixels on a high-resolution screen. Different devices report different values, including non-integer ones. You should use media queries to handle varying screen densities correctly.
-
How to add a custom header in HttpWebRequest
Adding a custom HTTP header to an HttpWebRequest object, targetting Windows Phone 7, is done through the Headers property. The good thing that it works for a lot of other .NET target platforms as well.
-
Emulate WebKit touch events using addTouch
Testing multitouch JavaScript code on the iPhone is difficult. With addTouch, you can test your code in any modern desktop browser.
-
The State of Frontend Web Development in 2010
2010 saw HTML5 and CSS3 become mainstream, while jQuery dominated JavaScript libraries, and responsive design started shaping the web.
-
The State of Frontend Web Development in 2006
Frontend web development in 2006 is vibrant and changing, and continues to push the boundaries
-
IMG problems in Firefox
There is a security setting in Firefox that can prevent a web page from dynamically setting the SRC attribute of an IMG element. Falling back to using the innerHTML property does work, but it feels a lot like using eval().
-
Visual C++ 6.0
Visual C++ 6.0 revolutionizes coding with IntelliSense and 'Edit and Continue', enhancing productivity and creativity for developers.
-
Building websites with Active Server Pages
Explore ASP's power in building dynamic web applications, with insights on maintaining security and performance.