Blog
Handling cookies with java URLConnection
http://www.hccp.org/java-net-cookie-how-to.html
Same way you can set other headers like Content-Type, Accept to the HTTP request using the setRequestProperty method of URLConnection
Firefox addon to build HTTP request
This needs comes up when you cannot test build HTTP GET or POST request requiring special request headers like content type = application/json;
Categories :
HTTP
How to increase clickable area of links
See this A List Apart post - Clickable Region Fix - about this
Categories :
HTML
JavaScript
jQuery not executing script tags in ajax load
This happens when the script code is not correct , or if the script code is a JSON string then the string may not be well formed.
Categories :
jQuery
JavaScript
Selecting Dom ID with dot in it through jQuery
I could not select Dom elements with ID having dot character in them. Quick google search gave me this Stack overflow post, which solved my problem.
Categories :
jQuery
JavaScript