vote up 0 vote down star

Getting an error when i use the following script to show a div when the page is loaded.

<script type="text/javascript">
$(document).ready(function() {
    $("#friendslist").Show();
});
</script>

It says $("#friendslist").Show() is not a function

flag

2 Answers

vote up 8 vote down check

You want

$("#friendslist").show()

instead of

$("#friendslist").Show()

(note, lower case 's' in 'show')

link|flag
vote up 2 vote down

jQuery tends to use camelCase for it's function names (per accepted JavaScript best practices). As such, the first word of the function name would be lowercase with each subsequent word being Title case.

$("#friendslist").show();

will be what you're looking for. An example of a camelCase function would be:

$("#friendslist").setStyle("display: block;");

Which is probably what .show() is doing anyway.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.