I used jQuery many times ago, but always used like this: $(document)
. Lately i seen many times somebody using jQuery(document)
, I don't know difference between them, I thought they are same.
But I have very hard problem now. You know most of jQuery plugin uses $(document)
method. Now I have one must use plugin that uses jQuery(document)
. I must include that, but after included I can't no longer use $(document)
method and plugins which uses it.
How can I solve it?