mirror of
https://github.com/kennethreitz/wordpress-theme-skeleton.git
synced 2026-06-05 15:10:17 +00:00
11 lines
229 B
JavaScript
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>')
|
|
}
|
|
})
|
|
}; |