Loading content with JQuery
Loading content via Ajax is quick and easy with JQuery. If you have never used jQuery before you might think twice about it!
Below is my html where we will load the content.
1
<div id="LoadContent"></div>
Now lets look at the javascript needed to load a remote page in.
1
$("#LoadContent").load("path/to/remote/file.php");
After that is called the contents of “file.php” would be loaded [...]
Browser detection using jQuery
Browser sniffing is messy. There are a million ways to do it but none of them are particularly clean and most involve conditional statements such as “” for IE and various other CSS selector hacks for other browsers.
It get around this common issue i am now using jQuery to add a class to my body [...]
Cookies with JQuery
So in some of my latest projects i dont have full source access, so i need to look for cookies the main application is setting. To do this i am using jQuery to look into the cookies and give me the value. Once i know the value i can then write a new cookie that [...]
jQuery to Ship with Visual Studio
Microsoft will now be adopting jQuery for all it’s Ajax tools and any javascript related items. This is a big win for jQuery!
We have two pieces of fantastic, albeit serendipitous, news today: Both Microsoft and Nokia are taking the major step of adopting jQuery as part of their official application development platform. Not only will [...]


