Archive for June, 2011

User Testing Websites

0

A few user testing websites – know of any others?

http://www.loop11.com/pricing/
http://www.optimalworkshop.com/chalkmark.htm
http://www.usertesting.com/
http://www.userzoom.com/

How to trigger a jQuery Plugin (fancybox) if URL match

5

I currently work for a venue – often times we have shows with multiple acts, so we need to list set times for each artist. Easy enough: I can write a modal-type pop-up window using fancybox that opens when the user clicks a link (“DJ Showtimes here“, for example). But say you want to send an email that links to that list? Since most email clients, web- or desktop-based, don’t allow javascript, I needed to trigger the click based on the URL. Here’s my solution (using a custom jQuery function to avoid conflicts with other libraries in use):


$j('#various2').fancybox({'hideOnContentClick': true, 'hideOnOverlayClick': true, 'showCloseButton': true, 'scrolling': 'auto'}); /* use id of link for fancybox selector */
/* necessary to set if-statement within page ready or load event */
$j(document).ready(function() {
if(document.location.href.indexOf('#various2')>-1){ /* check for anchor text in URL */
$j('#various2').fancybox().trigger('click'); /* chain click trigger on to previously written fancybox declaration */
}});
$j('#fancybox-wrap').css({'margin':'20px auto'}) /* set css for wrapper; safari was centering the inline element to the position of the #various2 element, which was at the top of the page. This resets to 20px top/bottom and in the middle horizontally */

My link looks like this:

DJ Set Times Here

and my content is wrapped with:


CONTENT HERE

Easy, peasy.

Google Analytics Links & Resources

0

gleaned from http://appsumo.com/googlevid/ (must sign up to gain access to [temporarily free] video!

Campaign Tracking Overview:
http://cutroni.com/blog/2006/11/10/google-analytics-campaign-tracking-pt-0-an-overview/

Google Analytics URL Builder:
http://www.google.com/support/analytics/bin/answer.py?hl=en&answer=55578

Goals & Funnels:
http://www.google.com/support/analytics/bin/answer.py?answer=55515&hl=en

Site Search:
http://www.google.com/support/analytics/bin/answer.py?hl=en&answer=75817

Google Analytics: Power User Guide:
http://blog.vkistudios.com/index.cfm/2009/6/5/The-Google-Analytics-Power-User-Guide

50 Resources for Getting the Most Out of Google Analytics
http://blog.kissmetrics.com/50-resources-for-getting-the-most-out-of-google-analytics/

The Huge Collection of Google Analytics Tips
http://www.searchenginejournal.com/the-huge-collection-of-google-analytics-tips/7426/

Google Analytics YouTube Channel
http://www.youtube.com/googleanalytics

Blogs about Google Analytics

The Official Google Analytics Blog
http://analytics.blogspot.com/index.html

Advanced Web Metrics
http://www.advanced-web-metrics.com/blog/

Google Analytics Results
http://www.googleanalyticsresults.com/

Luna Metrics Blog
http://www.lunametrics.com/blog/

Analytics Talk
http://www.cutroni.com

Go to Top