Files
2010-03-29 04:32:28 -04:00

11 lines
229 B
JavaScript

$.fn.markCurrentLocation = function() {
var path = window.location.href
return this.each(function(){
var self = $(this);
var href = self.attr('href');
if(RegExp(href).test(path)){
self
.wrap('<em></em>')
}
})
};