move code to static files
This commit is contained in:
parent
4aebccbc7b
commit
0e88a8d13e
4 changed files with 64 additions and 75 deletions
|
@ -1834,4 +1834,22 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||
if (document.getElementById('cpuRange')) {
|
||||
new PriceCalculator();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
function selectPlan(element) {
|
||||
const planId = element.getAttribute('data-plan-id');
|
||||
const planName = element.getAttribute('data-plan-name');
|
||||
|
||||
// Find the plan dropdown in the contact form
|
||||
const planDropdown = document.getElementById('id_choice');
|
||||
if (planDropdown) {
|
||||
// Find the option with matching plan id and select it
|
||||
for (let i = 0; i < planDropdown.options.length; i++) {
|
||||
const optionValue = planDropdown.options[i].value;
|
||||
if (optionValue.startsWith(planId + '|')) {
|
||||
planDropdown.selectedIndex = i;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue