Good Morning everyone
I was wander whether I could get some help from you guys with a blocker issue I am having right now L
Let me give you some background. My server file structure looks like this
In public_html -> Index.php require once top_header.inc which includes my jQuery script (See below)
- <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js' type="text/javascript">
- </script>
- <script type="text/javascript">
- $(document).ready(function() {
- $("#category_2").live("click", function(){
- var category_2 = $("#category_2").val();
- $.post("Sideview.php", { category_2: category_2}, function(data) {
- $("#viewid2").html(data);
- });
- return false;
- });
- });
- </script>
- <script type="text/javascript">
- $(document).ready(function() {
- $("#viewid2").load("Sideview.php");
- });
But my problem is that when I load Sideview.php the response is as fallow L
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /~arek/Mainview.php was not found on this server.</p>
</body></html>