There is no live() function in jquery 1.9.0, but jquery.unobtrusive.ajax.js is already use this function.
live()
Should I us
.live() has been replaced with the event delegation syntax of .on():
.live()
.on()
$('#parent').on('click', '.child', function() { ... });
#parent should exist when you call your selector, so if your element is top-level, use document as the parent.
#parent
document