dexters laboratory

HTML, Javascript, Jquery, C#, SQL Components, Extensions and everything else accomplished on my spare development time.

Click Me!

20 CSS code snippets to make your life easier

With so many new trends advancing every year it can be difficult keeping up with the industry. Designers and FE developers have been deeply ingrained into the newer CSS3 properties, determining the ultimate browser support and quirky hacks.See some of my CSS3 and CSS2 snippets that makes your life easier. read more



10 Usefull jQuery snippets

jQuery snippets to make your coding easier....nuff said read more



How do I loop through a set of records in SQL Server, without using cursor?

Literally one of the most used sql queries for me. Although you should stay away from looping in SQL generally, there is still a space for it. And using Cursors are akward at the best of times. Here is an option that doesnt use Cursors read more



ToList() - ToRemember()

Avoid Deferred Execution While Writing LINQ Queries read more



5 js snippets you always use but never remember!

There is a lot of code out there, and remembering all of them is not always possible. Here are 5 random js snippets that I keep close by since they always seem to pop up read more



validate email with Javascript

This snippet will validate that a properly formatted e-mail address is entered in a form, it cannot guarantee that the e-mail address is real, there is no way to check for that with JavaScript. read more



understanding JSON

JavaScript Object Notation (JSON) is a standard text-based format for representing structured data based on JavaScript object syntax. It is commonly used for transmitting data in web applications (e.g., sending some data from the server to the client, so it can be displayed on a web page, or vice versa). You'll come across it quite often, so in this article we give you all you need to work with JSON using JavaScript, including parsing JSON so you can access data within it, and creating JSON. read more