1.

Can We Use Our Own Specific Character In The Place Of $ Sign In Jquery?

Answer»

<P>Yes, You can also CREATE your own shortcut very easily. The noConflict() method returns a reference to jQuery, that you can save in a variable, for LATER use.

Here is an example:

Code:

var vikas = $.noConflict(); vikas(document).ready(function(){
vikas("button").click(function(){
vikas("p").text("jQuery is still working!");
});
});

Yes, You can also create your own shortcut very easily. The noConflict() method returns a reference to jQuery, that you can save in a variable, for later use.

Here is an example:

Code:



Discussion

No Comment Found