I apologize if this is too simple and has been discussed several times. I am not a Javascript/JQuery developer and I do not know what search terms I should use :-(
The problem is: I have to edit a html-page at work. There is a div which shows some content. If you click a button the content within the div should be change to another html-page.
Small example:
<form class="ReportController" name="DateRange" action="report" method="post" >
<input type="checkbox" name="kategorie[]" />All
<input type="checkbox" name="kategorie[]" value="Category1"/>
<input type="submit" name="submit" value="Recalc" />
</form >
<div id="report" >
< !-- some content -- >
</div >
Whenever I change the filtering at the top I want the new data to be displayed in the report-div. The new data is already there in different html-files. So if someone chooses "All" it should open (for example) all.html in the report-div.
Thanks! Alex