Skip to content

Commit 7beda02

Browse files
author
metadaddy
committed
Minor tweaks to README
1 parent 0754185 commit 7beda02

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ Your Visualforce page will need to include jQuery and the toolkit, then create a
3939
var client = new forcetk.Client('{!$Api.Session_ID}');
4040
4141
client.query("SELECT Name FROM Account LIMIT 1",function(response){
42-
$j('#accountlist').html(response.records[0].Name);
42+
$j('#accountname').html(response.records[0].Name);
4343
});
4444
</script>
45-
<p>The first account I see is <span id="accountlist"></span>.</p>
45+
<p>The first account I see is <span id="accountname"></span>.</p>
4646
</apex:page>
4747

4848
A much more fully featured sample is provided in `example.page`.

0 commit comments

Comments
 (0)