Hello,
I want to load a php include file using jquery, ie., should reload. I have the german language loaded below
<div id="lang_files"><? include('lang-de.php'); ?></div>
Now I want to load the french language using
$('#lang12').bind('click',function(){
('#lang_files').load('lang-fr.php');
});
Thanks Jean