08.09.2010
Try this to determine if an object is type of jQuery. if (parameterValue instanceof jQuery) alert('true');
08.08.2010
jQuery.tmp Level 1 - Static Html Load a Template from static Html Javascript String. Html Source <div class="s1"></div> <div class="s1"></div> Javascript Source $('.s1').tmp('<span>Template from static Html...</span>'); Load a Template from static Html Javascript String with context data.
08.04.2010
Categories: Sql | Add a Comment
Everybody knows the min and max value properties in .Net. Dim i As Int32 = Int32.MaxValue The values represents the smallest and the largest value for a datatype. For some of us it might be interesting to get this information within a stored procedure.
08.03.2010
Categories: Sql | Add a Comment
If you want to code platform-independ stored procedures, it is important to know the path seperator character to build some path strings while working with files and directories on different operating systems. It is possible to determine the operating system the database server is running on. So far we know that Windows is the only platform using [...]
08.03.2010
Please Login or Register to read the rest of this content.
08.02.2010
The following document descibes the basic structure of an HTML file. Below you can find a copy and paste version. Document Type Declaration First of all every HTML file should have a document type declaration. The information is used to determine the used HTML version. It is recommended to use XHTML 1.0 which is a [...]