Website Design

  • 3 {{ upvoteCount | shortNum }}

    How can I tell if my facebook like button is working properly?

    spectrefax in Web Design

    I keep seeing this in my referrer logs www.facebook.com/plugins/like.php?channel_url=http%3A%2F%2Fwww.onlinepokert ournamentstrategies.com%2F%3Ffb_xd_fragment%23%3F% 3D%26cb%3Df1d3364d8fca364%26relation%3Dparent.pare nt%26transport%3Dfragment&href=http%3A%2F%2Fwww.on linepokertournamentstrategies.com%2F&layout=standa rd&locale=en_US&node_type=1&sdk=joey&send=true&sho w_faces=false&width=450 I assume it's people clicking the like button. I tested it on my own facebook ... [read more]

  • 2 {{ upvoteCount | shortNum }}

    How to make this javascript work well w/ other browser (working only w/ IE)

    KingOfDCP in Web Design

    Hi everyone, I have this javascript Code: <script type="text/javascript"> $(document).ready(function(){ $("ul.topnav li a").mouseover(function() { $(this).parent().find("ul.subnav").fadeIn('slow').show(); $(this).parent().hover(function() { }, function(){ $(this).parent().find("ul.subnav").fadeOut('slow'); }); }); $("ul.topnav li ul li a").mouseover(function() { $(this).parent().find("ul.subnav2").fadeIn('slow').show(); $(this).parent().hover(function() ... [read more]