List of Product Demo Video Tools & Services

List of Product Launch / Landing Page Services

  • LaunchRock – Create a viral “coming soon” landing page
  • LaunchSoon – create a coming soon landing page
  • Prefinery– Beta and Launch Mgmt software
  • LaunchEffect – WordPress Landing pages for viral launches
  • Ooomf – iPhone app store build/push/launch
  • Unbounce – create, publish & test promotion specific landing pages
  • Instapage – create a free landing page
  • KickoffLabs -product landing pages
  • LaunchGator – create a viral landing page
  • Atmio – mobile landing pages
  • Lander – create a landing page in minutes
  • Ion – create landing pages that convert

Survey Tools

Find a Co-founder for Your Startup

Startup Groups

Debugging Javascript Using console.log & Conditional Blocks

When developing a site, you may have a main javascript file that contains various blocks of code for different parts of your site. As time goes on, this file could get really long and you may not want to break it up to keep minimize requests and the number of files to maintain. Sometimes you might accidentally have code in one block that is meant for one part of  your site interfere with code from another. In addition, you may find it hard to see which blocks of code are getting executed. One way to overcome this is by setting up your code as follows:

/**
 * Code to do one thing on one part of your site,
 * e.g. slide show your product pages
 */
(function ($) {
	$(document).ready(function () {
		 if ($("body.products").size() > 0) {
		 	if (typeof console != 'undefined' && console !== null) {
				console.log("slide show on product pages called.");
			}
			// put code here ...
		}
	});
}(jQuery));


/**
 * Code to do one thing on one part of your site,
 * e.g. custom animation your resources pages
 */
(function ($) {
	$(document).ready(function () {
		 if ($("body.resources").size() > 0) {
		 	if (typeof console != 'undefined' && console !== null) {
				console.log("custom animation on resources pages called.");
			}
			// put code here ...
		}
	});
}(jQuery));