Understanding Marketing Automation

danejMarketing Automation

If you’re accustomed to thinking of marketing as a hands-on enterprise, it might be difficult for you to wrap your head around the idea of automating any part of it. That’s understandable. It’s your job to market your product or service, and it takes some adjustment to think about using software to handle what you’ve always done manually. To help … Read More

Introduction to Marketing Automation

danejMarketing Automation

It wasn’t that long ago that even a comprehensive marketing campaign – one that was firing on all cylinders – had only a few major components. A company might run print ads in local newspapers, trade publications, or even a national magazine. They might buy radio advertising space on popular local stations, and run ads on local television. Other components … Read More

Create a redirect page with Javascript

danejCode Snippets

When you have a complicated marketing funnel, sometimes you need to “fire a pixel” on certain pages to ensure your tracking picks up the progress of your visitor. This is typically a piece of javascript that needs to run or it may be an image that loads on a 3rd party server. To redirect the page using javascript: window.location.replace(“http://your.domain.com”); You … Read More

Get selected text and value from drop down

danejCode Snippets

I often find myself needing the selected text from a drop down box. Using jQuery, a simple way to get the text is: $(“#dropdownId”).children(“option:selected”).text(); To get the value of the selected item, you can use: $(“#dropdownId”).children(“option:selected”).val();