After successfully implementing two buttons that allow users to adjust the font size on my webpage, I noticed that upon refreshing or reopening the page, the font size resets to its default setting. How can I ensure that the font size remains at 150% even after the page is refreshed or reopened? Below is the jQuery code I am currently using:
$(document).ready(function() {
$("#l").click(function() {
$("p").css("font-size","150%");
});
$("#n").click(function() {
$("p").css("font-size","100%");
})
});