Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Can everything that can be done with JavaScript, also be done with Jquery?

  • This topic is empty.
Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #44346
    Anonymous
    Inactive

    Tittle says it all.

    #133091
    __
    Participant

    jQuery is a JavaScript library, not its own language: everything jQuery can do **is** done in JavaScript.

    #133092
    Anonymous
    Inactive

    @traq I already know that. But i’ve seen some complex stuff done with javascript that i could not imagine could be done with simple Jquery. But i got my answer. Thanks

    #133094
    __
    Participant

    What I’m getting at is that “either/or” questions are meaningless when you’re dealing with subsets. How do you define using jQuery “without” regular javascript?

    What’s the difference between this

    var el = document.getElementById(“outside”);
    el.addEventListener(“click”, someCrazyImpossibleUsingJQueryFunction, false);

    and this

    $( “#outside” ).click( someCrazyImpossibleUsingJQueryFunction );

    ?

    Does the second example “use jQuery”?

    #133109
    Kitty Giraudel
    Participant

    I think he wants to know if there are things jQuery can’t do. I’d say yes: Canvas stuff.

    #133110
    Anonymous
    Inactive

    @HugoGiraudel that’s what i meant.

    #133111
    Paulie_D
    Member

    Natively…no…but with a plugin?

    http://plugins.jquery.com/jcanvas/

Viewing 7 posts - 1 through 7 (of 7 total)
  • The forum ‘CSS’ is closed to new topics and replies.