FestivAlgo/assets/js/exemples.js

15 lines
434 B
JavaScript
Raw Normal View History

2019-12-28 15:54:48 +01:00
$(document).ready(function() {
$(".example .try_it button").click(function() {
let textarea = $(this).parent().children('textarea').first();
if (!textarea) {
console.error('Textarea associated to this button not found.')
}
// Save example to local storage
localStorage.setItem('saved_code', textarea.val());
localStorage.setItem('saved_language', 1);
// Redirect to home page
document.location.href=".";
});
});