Loading...
Copy code
Close
Permalink
Close
Please tell us why you want to mark the subject as inappropriate.
(Maximum 200 characters)
Report Inappropriate
Cancel
Private Message
From :
guest
To :
Subject :
Content :
Type the characters you see in the picture below.
Send
Cancel
From :
guest
To :
Subject :
Content :
Type the characters you see in the picture below.
Send
Update
Cancel
Feedback
Email ID
Subject :
Comments :
Send
Cancel
Private Message
Type the characters you see in the picture below.
Type the characters you see in the picture below.
Attach files
Desktop
Zoho Docs
Google Docs
Each Attachment size should not exceed 1MB.
Max no of attachments : 3
Loading User Profile...
guest
Response title
This is preview!
Attachments
Publish
Back to edit
Cancel
(
)
Sign In
New to this Portal? Click here to
Sign up
You can also use the below options to login
Login with Facebook
Login with Google
Login with Yahoo
jQuery
Plugins
UI
Meetups
Forum
Blog
About
Donate
All Forums
Recent Posts
Log In
Search
jQuery
Search
jQuery Forum
Screen name:
web_developer_amritsar
Website:
http://www.idea-ads.com/
web_developer_amritsar's Profile
12
Posts
11
Responses
0
Followers
Activity Trend
Last 30 days
Last 30 days
Date Interval
From Date :
To Date :
Go
Loading Chart...
Posts
Responses
PM
Show:
All
Discussions
Questions
Ideas
Problems
Expanded view
List view
Private Message
jQuery not working
[7Replies]
17-Jun-2013 11:04 PM
Forum:
Getting Started
<script type="text/javascript" src="../js/jquery-1.9.1.js"></script>
<script type="text/javascript" src="../js/jquery-ui.js"></script>
<script type="text/javascript">
$('#t1').blur(function(e) {
if (!this.value)
{
alert ("Enter");
}
});
</script>
--------------------------------------------------------------------------------------------------- html
<body>
t1<input type="text" value="" id="t2" />
t2<input type="text" value="" id="t1" />
t3<input type="text" value="" id="t3" />
</body>
PHP
[2Replies]
06-May-2013 05:47 AM
Forum:
Getting Started
Which is the best site for learning PHP
jQuery in .js file
[2Replies]
17-Feb-2013 10:31 AM
Forum:
Using jQuery UI
How do i add a jquery file in .js file
including jQuery file in .js file
[1Reply]
10-Jan-2013 12:32 AM
Forum:
Getting Started
How we include a jquery file in .js file that can work in .html file
also what is the code in <head> element
including jquery file
[3Replies]
10-Jan-2013 12:05 AM
Forum:
Getting Started
How we include a jquery file in .js file that can work in .html file
also what is the code in <head> element
Div has disappear
[1Reply]
09-Jan-2013 09:29 AM
Forum:
Getting Started
below is the coding of my div's...... but the Div_2 is not visible... where has this gone????
.css coding ___________________________________________________________
div.container
{
background-image: url('../Images/hemkund-sahib-yatra-itinerary-and-places-to-stay.jpg');
width: 985px;
height: 150px;
margin: 0px auto 0px auto;
overflow: hidden;
z-index: 1;
}
div.Div_1
{
margin: 60px auto auto 700px;
color: #FFFFFF;
line-height: 150%;
text-align: left;
z-index: 2;
width: 175px;
font-family: verdana;
font-size: 11px;
position: relative;
display: inline-block;
}
div.Div_2
{
width: 70px;
height: 122px;
background-image: url('../Images/golden-temple-amritsar-tour-travel-guide.png');
background-repeat: no-repeat;
margin: 25px auto 0px 800px;
z-index: 30;
position: relative;
display: inline-block;
overflow: hidden;
clear: none;
visibility: visible;
}
html coding_________________________________________
<div class="container">
<div class="Div_1">
Download Complimentary<br />
Travel Guides to<br />
Sri Harmandir Sahib<br />
Amritsar
</div>
<div class="Div_2"></div>
</div>
on ............removeclass addclass
[5Replies]
08-Jan-2013 11:44 AM
Forum:
Getting Started
I want to change class slow speed, I want values i.e. 1000 or something else not slow or fast
where can i write this code
<script type="text/javascript" src="js/jquery-1.8.3.js"></script>
<style type="text/css">
div.d1_1
{
background-color: #9F0;
height: 100px;
width: 100px;
border: 1px thin #000;
}
div.d1_2{
background-color: #639;
height: 200px;
width: 200px;
border: 1px thin #000;
}
</style>
<script type="text/javascript">
$(document).ready(function() {
$('.d1_1').mouseenter(
function()
{
$(this).removeClass("d1_1");
$(this).addClass("d1_2");
})
.mouseleave(
function()
{
$(this).removeClass("d1_2");
$(this).addClass("d1_1");
})
});
</script>
using toggleClass ............... slow, fast properties
[1Reply]
08-Jan-2013 10:19 AM
Forum:
Getting Started
how can i change classes slow or fast or very slow using toggle class
on mouse over
[3Replies]
08-Jan-2013 09:27 AM
Forum:
Getting Started
on mouse over I want to change .css class of div, how can i do this
I want the speed of changing class slow or very slow, this is very fast
using classes in .animate function
[1Reply]
29-Dec-2012 12:28 PM
Forum:
Using jQuery
function up()
{
$(".div2").animate(
{top:"-50px"},300
);
}
---------------------------------------------------------------------
instead of defining values of property, can we use any class from .css file
jQuery function is not working
[1Reply]
28-Dec-2012 12:11 PM
Forum:
Using jQuery
<html>
<head>
<title>jQuery Menu</title>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery-latest.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
$("#t1").mouseover(
function()
{
$("#d1").css("margin-top","-10px")
}
)
});
</script>
<style type="text/css">
div.div1
{
background-color:#9F0;
margin-top:50px;
}
</style>
</head>
<body>
<div align="center">
<table width="75%" border="1">
<tr>
<td height="100" width="20%" id="t1"><div class="div1" id="d1"></div></td>
<td width="20%"> </td>
<td width="20%"> </td>
<td width="20%"> </td>
<td width="20%"> </td>
</tr>
</table>
</div>
</body>
</html>
jQuery CSS
[6Replies]
28-Dec-2012 07:49 AM
Forum:
Using jQuery
I am new to jQuery, my following code not working, there is an error in $ line, can anybody help me:
<script>
function call()
{
$("div").css("margin-left":200px;);
}
</script>
<style type="text/css">
div{margin-left:100px;}
</style>
<body>
<div onMouseOver="call();">
<p>Hallo</p>
</div>
</body>
«Prev
Next »
Moderate user : web_developer_amritsar
Forum