TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
ronak chittora
NA
31
20.7k
Jquery error
Jan 7 2014 8:11 AM
y it is showing error to me???? when im trying to implement on my PC
<!DOCTYPE HTML>
<html>
<head>
<title>slide down</title>
<script src="http://ajax.google.com/ajax/libs/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("#flip").click(function(){
$("#panel").slideUp("slow");
});
});
</script>
<style type="text/css">
#panel, #flip
{
padding:5px;
text-align:center;
background-color:#e5eecc;
border:solid 1px #c3c3c3;
}
#panel
{
padding: 50px;
}
</style>
</head>
<body>
<div id="flip">click to slide up panel</div>
<div id="panel">Hello World</div>
</body>
</html>
Reply
Answers (
1
)
Need regex for specific requirement
What boolean operators does JavaScript support?