Changed .delegate to .on for future compatibility with jQuery

This commit is contained in:
Scott Rabin 2012-01-26 00:39:23 -05:00
parent 94062ea1d3
commit aeaf1b4bb7

View File

@ -8,7 +8,7 @@
*/
$('body').delegate('ul.tabs > li > a', 'click', function(e) {
$('body').on('click', 'ul.tabs > li > a', function(e) {
//Get Location of tab's content
var contentLocation = $(this).attr('href');