JavaScript

How to Hide a Column in jQuery DataTables Without Removing It From the DOM

April 23, 2013

There are times when you may want to hide a column from view without actually removing it from the DOM. This can be useful if you want to keep the data accessible for other operations but don’t want it visible on the front end. Quick Solution: Use CSS # One straightforward way to achieve this is by using CSS. This allows you to keep the column data in the DOM, but just not display it in the table. ...

Best Practices for Crafting an Efficient Build Script

May 9, 2011

When it comes to software development, a robust and efficient build script can be a game-changer. Whether you’re working on a Java project or any other type of application, the right build script can streamline the whole process and make life a whole lot easier for developers. Here’s a rundown of some best practices to keep in mind when you’re writing your build script: Platform Independence # Choose a programming language that is compatible across multiple platforms, especially if you’re working on a Java project. ...

9 skills developers will need in the next five years

July 12, 2009

The economy is changing rapidly, and developers need to keep up with the latest trends and skills to stay relevant and competitive. Here is a list of 9 skills that every developer should master or at least be familiar with in the next five years. This list is not comprehensive, and it does not cover every niche or specialty in the industry. However, for most mainstream development scenarios, these skills will give you an edge over others and help you create better solutions. ...

Flash z-order — always on top?

July 1, 2009

I had a problem with a javascript pull-down menu that overlapped with a flash movie. The menu always appeared BEHIND the flash movie, regardless of the z-order. I solved it by: Adding the parameter <param name="wmode" value="transparent"> to the OBJECT tag. Adding the parameter wmode="transparent" to the EMBED tag. These parameters made the menu display correctly over the flash movie.