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
Google Docs
Each Attachment size should not exceed 1.0 MB.
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:
rhalskov
rhalskov's Profile
2
Posts
3
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
Updating dynamic content
[1Reply]
21-Mar-2012 08:55 AM
Forum:
Using jQuery
Hi
I need to update some dynamic content rendered from Umbraco contour.
I am trying to take the form rendered from Umbraco, and display it in to 2 columns
Here is a simple layout how it should look.
<div class="container">
<div class="sixteen columns">
<div id="form">
<div class="seven columns">
<div>div 1</div>
<div>div 2</div>
<div>div 3</div>
<div>div 4</div>
<div>div 5</div>
<div id="div6">div 6</div>
</div>
<div class="seven columns">
<div id="div7">div 7</div>
<div>div 8</div>
<div>div 9</div>
<div>div 10</div>
<div>div 11</div>
<div>div 11</div>
</div>
</div>
</div>
</div>
I need to add the "
sixteen columns
" and "
seven columns
" after the form is rendered.
The class "
sixteen columns
" i have got working with a "wrap"
When i try to insert "seven
columns
" i cant get to work.
Here is what i have been trying
<script type="text/javascript">
$('.# div6 ').after('</div><div class="seven columns">');
$('.form').wrap('<div class="sixteen columns">');
</script>
When i try to put it in after the "div6" as the above example, the result is this:
<div class="seven columns"> </div>
it should be like this:
</div><div class="seven columns">
Any suggestion..
tanks in advance
Kind regards René
hide "div", only the first time
[4Replies]
09-Mar-2012 08:15 AM
Forum:
Getting Started
Hi everyone
I need a little help.
I have a site where the first time a visitor comes to the site, i have to hide a <Div> tag.
After 5 sec the <Div> tag should fade in. It should only do this the first time.
Here is the code i have been trying to get work
I am trying to use .data to set a value, after the jQuery had shown the box the first time.
If the value is set it should not hide the "<Div>"
Any hint witch could point me in the right direction would help. tanks in advance...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>Untitled 1</title>
<style type="text/css">
.div {
background-color: #6699FF;
border-style: dotted;
height: 251px;
width:600px;
}
</style>
<script type="text/javascript" src="jquery-1.4.4.min.js"></script>
<script type="text/javascript">
$("#setTest").text(jQuery.data(#setTest, "true"));
case:1
$(document).ready(function(){
$(".div").hide()
$(".div").delay(2000).fadeIn(6000);
case:2
jQuery.data(#setTest { "true" });
});
</script>
</head>
<body>
<div class="div"></div>
<div id="setTest"></div>
</body>
</html>
«Prev
Next »
Moderate user : rhalskov
Forum