Suresh Sundar
Success is journey, not a destination, always.
Monday, 8 September 2014
[SOLVED]Hide DIV when click outside with jQuery
Use this in jquery or view(inside the script tag)
$('body').click(function(){
$('div').hide();
});
Its working.
Happy coding.
Tuesday, 2 September 2014
Solved: The remote server returned an error: (417) Expectation Failed.
Simple solution for this error is,
open your web.config file then add this this configuration on it.
<system.net>
<settings>
<servicePointManager expect100Continue="false" />
</settings>
</system.net>
Happy Coding ;)
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)