jQuery
Smooth Scrolling in jQuery
$(document).ready(function() { $('a[href*=#]').click(function() { if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.host
Dynamic Height for IFrame based on it's content
jQuery(document).ready(function() { jQuery('iframe').load(function() { jQuery(this).height(jQuery(this).contents().outerHeight()); }); });