function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
sfdc18sfdc18 

Unable to load Reports in Visualforce Page using jQuery

Hi,

I am unable to Reports in Visualforce Page using jQuery.
Below is my code.
<apex:page >

<apex:includeScript value="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" /> 

<div id="divTestArea1">
</div>

<script>
j$ = jQuery.noConflict();

j$(function()
{
$("#divTestArea1").load("http://ap1.salesforce.com/00O900000034a1f");
});
</script>

</apex:page>