I have a hopefully very simple .load question
The below is not returning anything via the load request. I've tried dinking around with it and making it as simple as possible but I'm at a lost. I've tried straight cut and pasting other scripts and still gotten no response from .load. I'm sure I'm missing something obvious. Thanks for the assistance.
- <html>
- <head>
- <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
- </head>
- <body>
- </style> <script language="javascript">
- function example_ajax_request_go() {
- $('#example-placeholder').load("http://67.135.34.172/?command=TableDisplay&table=Table2&records=24");
- }
- </script></p>
- <p><input type="button" value="Click Me!" onclick="example_ajax_request_go()" /></p>
- <div id="example-placeholder">
- <p>Placeholding text</p>
- </div>
- </div>
- </body>
- </html>