1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| <script type="text/javascript">
$(document).ready(function(){
$("ul.tabrow0").append('<li class="formindi"><a title="formation individuelle" href="#"><span style="padding-right:15px;">Formation individuelle</span></a></li>');
//quand on clique on appelle le fragment d'une page web
$(".formindi").click(function() {
$(".userinfobox").empty();
$(".buttons").hide();
$(".userinfobox").load('../course/view.php?id=8 .topics');
$(".right").hide();
$("#content").append('<center><input class="boutonformation" type="button" value="Choisir les activites" /></center>');
});
$(".boutonformation").click(function() {
});
});
</script> |