Sunday, February 19, 2012

http://sixrevisions.com/web-development/crazy-tips-help-become-better-coder/

7 Crazy Tips That Will Help You Become a Better Coder

 

 

 

http://visualstudiomagazine.com/articles/2012/02/01/2-great-javascript-data-binding-libraries.aspx

JavaScript libraries help you build powerful, data-driven HTML5 apps.

Toggle element JQuery

I don't who code this snippet but i like it :-)
(I also know there is the toggle function from JQuery)

Togger = function (e) {
    // Show the paragraph if it's hidden.
    var $paragraph = $(e.data);
    var $link = $(this);
    if ($paragraph.is(':hidden')) {
      $paragraph.show();
      $link.text('Click to hide');
     
    }
    // Hide the paragraph if it's visible.
    else {
      $paragraph.hide();
      $link.text(' Click to show');
    }
  };


$('#toggle-link-1').bind('click','#paragraph-1', Togger);
$('#toggle-link-2').bind('click','#paragraph-2', Togger);

Writing JavaScript without anonymous functions

Nice post on...

Javascript Encryption Decryption

JavaScript Encryption and Decryption

JavaScript Encryption and Decryption 2.0