YouTube Premium is a paid subscription service that provides an enhanced experience across YouTube, YouTube Music, and YouTube Kids. Enjoy ad-free videos, background play, and downloads for offline viewing.
Features
Ad-free viewing experience
Background play on mobile devices
Download videos for offline viewing
Access to YouTube Music Premium
YouTube Originals content
Cancel anytime
Select Your Plan
Solo
Solo plans allow access on multiple devices. Perfect for heavy users who want the best experience.
1 Month
₱49
Ad-free viewing
SOLO ACCOUNT
All Content
2 Months
₱79
Ad-free viewing
SOLO ACCOUNT
All Content
3 Months
₱99
Ad-free viewing
SOLO ACCOUNT
All Content
6 Months
₱199
Ad-free viewing
SOLO ACCOUNT
All Content
1 Year
₱229
Ad-free viewing
SOLO ACCOUNT
All Content
1 Month
₱49
Ad-free viewing
SOLO ACCOUNT
All Content
2 Months
₱79
Ad-free viewing
SOLO ACCOUNT
All Content
3 Months
₱99
Ad-free viewing
SOLO ACCOUNT
All Content
6 Months
₱199
Ad-free viewing
SOLO ACCOUNT
All Content
1 Year
₱229
Ad-free viewing
SOLO ACCOUNT
All Content
Selected Plan
No plan selected
() {
planCards.forEach(c => c.classList.remove('selected'));
this.classList.add('selected');
const duration = this.getAttribute('data-duration');
const price = this.getAttribute('data-price');
const type = this.getAttribute('data-type');
selectedPlanText.textContent = `${type.charAt(0).toUpperCase() + type.slice(1)} - ${duration} (${price})`;
checkoutBtn.disabled = false;
// Remove the ₱ symbol for priceValue
const priceValue = price.replace('₱', '');
selectedPlan = {
product: 'YouTube Premium',
type: type,
duration: duration,
price: price,
priceValue: priceValue
};
});
});
// Proceed to checkout
checkoutBtn.addEventListener('click', function() {
if (selectedPlan) {
// Store selected plan in sessionStorage
sessionStorage.setItem('selectedPlan', JSON.stringify(selectedPlan));
// Redirect to account creation page
window.location.href = 'account-creation.html';
}
});onst duration = this.getAttribute('data-duration');
const price = this.getAttribute('data-price');
const type = this.getAttribute('data-type');
selectedPlanText.textContent = `${type.charAt(0).toUpperCase() + type.slice(1)} - ${duration} (${price})`;
checkoutBtn.disabled = false;
// Remove the ₱ symbol for priceValue
const priceValue = price.replace('₱', '');
selectedPlan = {
product: 'YouTube Premium',
type: type,
duration: duration,
price: price,
priceValue: priceValue
};
});
});
// Proceed to checkout
checkoutBtn.addEventListener('click', function() {
if (selectedPlan) {
// Store selected plan in sessionStorage instead of localStorage
sessionStorage.setItem('selectedPlan', JSON.stringify(selectedPlan));
// Redirect to account creation page
window.location.href = 'account-creation.html';
}
});onst duration = this.getAttribute('data-duration');
const price = this.getAttribute('data-price');
const type = this.getAttribute('data-type');
selectedPlanText.textContent = `${type.charAt(0).toUpperCase() + type.slice(1)} - ${duration} (${price})`;
checkoutBtn.disabled = false;
selectedPlan = {
product: 'YouTube Premium',
type: type,
duration: duration,
price: price
};
});
});
// Proceed to checkout
checkoutBtn.addEventListener('click', function() {
if (selectedPlan) {
// Store selected plan in session storage
sessionStorage.setItem('selectedPlan', JSON.stringify(selectedPlan));
// Redirect to account creation page
window.location.href = 'account-creation.html';
}
});
});