How can I do this in jQuery
Hello,
Code:
- <script language="javascript" type="text/javascript">
- <!--
- //Browser Support Code
- function ajaxFunction(){
- var ajaxRequest; // The variable that makes Ajax possible!
-
- try{
- // Opera 8.0+, Firefox, Safari
- ajaxRequest = new XMLHttpRequest();
- } catch (e){
- // Internet Explorer Browsers
- try{
- ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");
- } catch (e) {
- try{
- ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");
- } catch (e){
- // Something went wrong
- alert("Your browser broke!");
- return false;
- }
- }
- }
- // Create a function that will receive data sent from the server
- ajaxRequest.onreadystatechange = function(){
- if(ajaxRequest.readyState == 4){
- var ajaxDisplay = document.getElementById('ajaxDiv');
- ajaxDisplay.innerHTML = ajaxRequest.responseText;
- }
- }
- var course_level = document.getElementById('txtCourseLevel').value;
- ajaxRequest.open("GET", "get_courses.php?cl=" + course_level, true);
- ajaxRequest.send(null);
- }
- //-->
- </script>
I would like to do this in jQuery but I'm not sure where to start.
Essentially, when I click a button, it takes the values from my form and sends it to get_courses.php?cl=X and then returns the contents of that page and puts it into a div on the original page.
Thanks, Mark