Hi, i use jquery and this function:
var news = setInterval(function()
{
$('#news).load(news2.php?id='+ Math.random());
}, 5000);
But this function re-enter div.
I want to add a div, that old data remains.
Hi, i use jquery and this function:
var news = setInterval(function()
{
$('#news).load(news2.php?id='+ Math.random());
}, 5000);
But this function re-enter div.
I want to add a div, that old data remains.
Hi,
I want to put the div in the middle of the page.
I found one:
pagetext-align: center; but work only with IE.
Hi,
i have 4 div and I want to do so:
http://img15.imageshack.us/img15/2514/divd.png
But i have trouble whit right div. It is below the second div.
<html>
<head>
<style type="text/css">
body {
margin:0;
margin-top: 0;
margin-bottom: 0;
text-align: center;
}
div.all{
width: 600px;
background-color: #5292d9;
}
div.left{
float: left;
width: 60px;
height: 500px;
background-color:#00ff00;
}
div.top{
float: left;
width: 460px;
height: 100px;
background-color:#223366;
}
div.center{
float: left;
width: 460px;
height: 400px;
background-color:#123d34;
}
div.right{
float: left;
width: 80px;
height: 500px;
background-color:#336699;
}
</style>
</head>
<body>
<div class = "all">
<div class = "left">1</div>
<div class = "top">2</div>
<div class = "center">3</div>
<div class = "right">4</div>
</div>
</body>
</html>
Hi,
Who can know where to find the photoshop tutorial how to draw a poker table.
something like this:
http://www.pokerdeal.org/images/party-poker-table.jpg
or
http://www.bigslickspokerplace.com/poker-room-reviews/paradise-poker-review-images/paradise-poker-table.jpg
I very long use google, but nothing
Hi, I have problam whit jquery.
Whit IE work everything OK(work fine), but whit Mozila or Opera i have problam:
Hirs function "sec" work, fine, but secont in file index2.php "sec3" don't.
index.php
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script>
$(document).ready(function(){
var sec = setTimeout(function()
{
$('#sec').load('index2.php?id='+ Math.random());
}, 1000);
});
</script>
</head>
<body>
<div align="center" id="sec">Please wait...</div>
<div align="center" id="sec2">Please wait...</div>
</body>
</html>
index2.php
<script type="text/javascript" src="jquery.js"></script>
<?php
echo "PHP code here...<br>";
?>
<script>
$(document).ready(function(){
var sec3 = setInterval(function()
{
$('#sec2').load(time.php?id='+ Math.random());
}, 1000);
});
</script>
time.php
<?php
$sec = date("s");
echo $sec;
?>