Generation

generate functionWed, 06 Mar 2024

5- Make a function that takes Student faculty as a parameter, checks: a. If the entered faculty: FCI, show message: “You’re eligible to Programing tracks”. b. If the entered faculty: Engineering, show message: “You’re eligible to Network and Embedded tracks”. c. If the entered faculty: Commerce, show message: “You’re eligible to ERP and Social media tracks”. d. For any other faculty, show message: “You’re eligible to SW fundamentals track”.

ript function check(faculty) { if (faculty == 'FCI') { $('#FCI_checkbox').prop('checked', true); } else { $('#FCI_checkbox').prop('checked', false); } } $(document).ready(function() { $('#FCI_

Javascript
Generate More

Questions about programming?Chat with your personal AI assistant