Home » HTML » Html miscellaneous » Question
  1. The method releases jQuery’s control of $ is __________.
    1. data()
    2. each()
    3. $.param()
    4. $.noConflict()
    5. None of these
Correct Option: D

$.noConflict() method releases control of $ in jQuery. A reference to jQuery is returned by noConflict() method. E.g. var ty=$.noConflict(); ty(document).ready(function()) { ty(“button”).click(function() {ty(“h”).text(“It is working!”);}); });. $.param() jQuery AJAX method is the representation of an object or array. An each() method particularize function to run for every matched element. data() method either connects data to selected elements or get data from them.



Your comments will be displayed only after manual approval.