Microsoft
Software
Hardware
Network
Question : JQuery: "$" what does it mean in JQuery
Hi: In JQuery, I see something like: $.get(...). What does this $ mean? Does it mean current element/node?
Answer : JQuery: "$" what does it mean in JQuery
Dollar Sign is nothing but it's an alias for JQuery. Take a look at below jQuery code
$(document).ready(function
(){
});
IS SIMILAR TO:
jQuery(document).ready(fun
ction(){
});
Hope that helps
Random Solutions
'Index was outside the bounds of the array.' Issue in LINQ Query From Array
MySQL sum() case/if
Can I have Code Created to Automate Input in Word & Excel?
get info from php.ini
Backup Failed -
Array Formula with date ranges
Copy data from a web site into ms access
windows media player as a service?
SSRS 2005 How to set the Visibility on Matrix Data Column
How to write an Web Service API ?