topic_editation_presentation.js
305 Bytes
$(document).ready(function(){
$(".editation").hide();
});
function show_editation(id_topic){
$(".presentation_"+ id_topic).hide();
$(".editation_"+ id_topic).show();
};
function show_presentation(id_topic){
$(".editation_"+ id_topic).hide();
$(".presentation_"+ id_topic).show();
};