# post-carousel/4.0.7/admin/help-page/js/help-page.js

Smart Post – Post Grid, Post Carousel, Post Slider Gutenberg Blocks for Blog &amp; News, version 4.0.7. 93 lines.

- Page: https://pluginprobe.com/plugins/post-carousel/4.0.7/code/admin/help-page/js/help-page.js
- Raw: https://pluginprobe.com/plugins/post-carousel/4.0.7/raw/admin/help-page/js/help-page.js
- Modified: 2026-04-24T11:48:54+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/post-carousel/4.0.7/code/admin/help-page/js/help-page.js#L10-L20`.

```javascript
// ; (function ($) {
// 	const hash = window.location.hash.replace('#', '');
// 	// Help page tab menu script.
// 	$('.sp-smart-post__help').on('click', '.spspc-header-nav-menu a', function(e) {
// 		if( $(this).hasClass('active') ) {
// 			return;
// 		}
// 		let tabId = $(this).attr('data-id');
// 		$('.spspc-header-nav-menu a').each((i, item) => {
// 			$(item).removeClass('active');
// 			$('#' + $(item).attr('data-id')).css('display', 'none');
// 		})
// 		$(this).addClass('active');

// 		$('#' + tabId).css('display', 'block');

// 		if('recommended-tab' === tabId){
// 			$('#menu-posts-sp_post_carousel ul li').each((i, item) => {
// 				$(item).removeClass('current');
// 			})
// 			$('#menu-posts-sp_post_carousel ul li:nth-child(7)').addClass('current');
// 		}
// 		if('lite-to-pro-tab' === tabId){
// 			$('#menu-posts-sp_post_carousel ul li').each((i, item) => {
// 				$(item).removeClass('current');
// 			})
// 			$('#menu-posts-sp_post_carousel ul li:nth-child(8)').addClass('current');
// 		}
// 		if(('get-start-tab' === tabId || 'about-us-tab' === tabId)){
// 			$('#menu-posts-sp_post_carousel ul li').each((i, item) => {
// 				$(item).removeClass('current');
// 			})
// 			$('#menu-posts-sp_post_carousel ul li:nth-child(9)').addClass('current');
// 		}
// 	})

// 	$('#menu-posts-sp_post_carousel').on('click', 'ul li a', (e) => {
// 		var element = e.target.closest('a');

// 		if( 'edit.php?post_type=sp_post_carousel&page=pcp_help' === $(element).attr('href') ) {
// 			$(element).attr('href', '#get-start');
// 		}

// 		setTimeout(() => {
// 			var hashValue = window.location.hash.replace('#', '');
// 			if(hashValue) {
// 				$('#menu-posts-sp_post_carousel ul li').each((i, item) => {
// 					$(item).removeClass('current');
// 				})
// 			}
// 			if( 'recommended' === hashValue ) {
// 				$('.sp-smart-post__help .spspc-header-nav-menu a[data-id="recommended-tab"]').trigger('click');
// 				$(element).parent().addClass('current')
// 			}
// 			if( 'lite-to-pro' === hashValue ) {
// 				$('.sp-smart-post__help .spspc-header-nav-menu a[data-id="lite-to-pro-tab"]').trigger('click');
// 				$(element).parent().addClass('current')
// 			}
// 			if( 'get-start' === hashValue ) {
// 				$('.sp-smart-post__help .spspc-header-nav-menu a[data-id="get-start-tab"]').trigger('click');
// 				$(element).parent().addClass('current')
// 			}
// 		}, 0);
// 	})

// 	if( 'recommended' === hash ) {
// 		$('.sp-smart-post__help .spspc-header-nav-menu a[data-id="recommended-tab"]').trigger('click');
// 		$('#menu-posts-sp_post_carousel ul li:nth-child(9)').removeClass('current');
// 		$('#menu-posts-sp_post_carousel ul li:nth-child(7)').addClass('current');
// 	}
// 	if( 'lite-to-pro' === hash ) {
// 		$('.sp-smart-post__help .spspc-header-nav-menu a[data-id="lite-to-pro-tab"]').trigger('click');
// 		$('#menu-posts-sp_post_carousel ul li:nth-child(9)').removeClass('current');
// 		$('#menu-posts-sp_post_carousel ul li:nth-child(8)').addClass('current');
// 	}
// 	if( 'about-us' === hash ) {
// 		$('.sp-smart-post__help .spspc-header-nav-menu a[data-id="about-us-tab"]').trigger('click');
// 	}
	
// 	$('body').on('click', '.install-now', function(e) {
// 		var _this = $(this);
// 		var _href = _this.attr('href');
	
// 		_this.addClass('updating-message').html('Installing...');
	
// 		$.get(_href, function(data) {
// 		  location.reload();
// 		});
	
// 		e.preventDefault();
// 	});

// })(jQuery);
```
