Question : Show UnFriendly HTTP Error

I have Show Friendly URL unchecked in IE properties, but I still get a generic 500 server error.

I have tried checking it, hitting Apply - OK and then going back in unchecking it, etc but nothing.  How can I see what the exact error is?

Using IE8 and Windows 7.
Attachments:
 
show friendly URL
show friendly URL
 
 
500 server error
500 server error
 

Answer : Show UnFriendly HTTP Error

you missed a leading $ sign:
$('<p> appendTo  </p>').appendTo("#tabs-1");

Also, execute it upon page load, not while the page is still loading:
1:
2:
3:
4:
5:
6:
7:
<script>
    $(document).ready(function() {
      
	    $('<p> appendTo  </p>').appendTo("#tabs-1");
	    $("#tabs").tabs();
    });
  </script>
Random Solutions  
 
programming4us programming4us