Skip to content

Instantly share code, notes, and snippets.

@addorange
addorange / sameHeightBootstrap
Created June 19, 2013 09:21
Same height for spans inside Twitter Bootstrap row (jQuery)
boxes = $('.well');
maxHeight = Math.max.apply(
Math, boxes.map(function() {
return $(this).height();
}).get());
boxes.height(maxHeight);
@addorange
addorange / MySQL - CopyDataBetweenTables
Created May 31, 2013 08:01
MySQL - Copy data from one table to another, even if they have different structures
INSERT INTO `s_campaigns_mailaddresses` (`customer`,`email`)
SELECT '1', `email`
FROM `s_user`