mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-15 15:16:29 +01:00
7f29687a55
git-svn-id: http://core.svn.wordpress.org/branches/4.3@33847 1a063a9b-81f0-0310-95a4-ce76da25c4cd
17 lines
473 B
JavaScript
17 lines
473 B
JavaScript
(function($) {
|
|
$(document).ready( function() {
|
|
$('.feature-slider a').click(function(e) {
|
|
$('.featured-posts section.featured-post').css({
|
|
opacity: 0,
|
|
visibility: 'hidden'
|
|
});
|
|
$(this.hash).css({
|
|
opacity: 1,
|
|
visibility: 'visible'
|
|
});
|
|
$('.feature-slider a').removeClass('active');
|
|
$(this).addClass('active');
|
|
e.preventDefault();
|
|
});
|
|
});
|
|
})(jQuery); |