Skip to content

Instantly share code, notes, and snippets.

@benrolfe
benrolfe / geocode
Created July 19, 2012 15:36
Geocode location using Open Street Map
$params = array(
'q' => $location . ',UK',
'format' => 'json',
'countrycodes' => 'gb',
'limit' => '1',
'viewbox' => '-10.94,59.42,2.61,49.92',
'bounded' => '1',
'addressdetails' => '1',
);
@benrolfe
benrolfe / gist:2035335
Created March 14, 2012 09:22
Smooth Scrolling to anchor tag
$('document').ready(function(){
$('a.link').click(function(e) {
$('html, body').stop().animate({
scrollTop: $($(this).attr('href')).offset().top
}, 1300, 'easeInOutExpo');
@benrolfe
benrolfe / gist:2035324
Created March 14, 2012 09:20
Make jQuery Cycle fluid width
$('#slideshow').cycle({
containerResize: false,
slideResize: false,
fit: 1
});