Search:
Type: Posts; User: Fons
Search :
Search took 0.01 seconds.
a button can have a javascript action attached to it. ( OnClick= )
a form submit button submits the form to the action= declared in it.
so if you want to launch a javascript, a button is the...
if you need any help with coding it, just yell
/Fons
That really solved one problem!
Now all i need to get is the vars in a string, pass them on and work with them!
thanks a lot !
you saved my day
/Fons
would almost say that your CSS in the <div> would cause the problem
try tricking to remove style="display:none" from the <div> and see what happens.
if it works, you need to set the style in your...
I would start by thinking function:
function GetThePriceRight(paper, posterwidth, posterheight){
if(paper = "Universal Bond"){
var rollwidth = "36";
if(posterwidth < rollwidth){
...
<script type="text/javascript">
<!--
function statuswords(message){
window.status = message;
}
// -->
</script>
As far as I know, Firefox does not have this by default.
and the change that...
Than this forum is not the place to post your question I assume.
I guess you get a quicker reply when you repost in http://www.webdeveloper.com/forum/forumdisplay.php?f=7
I dont know if your hosting server runs PHP as well, but to make it cross-browser compatible I would suggest to use PHP with the GD classes to show your image after some work done on it.
have a...
use CSS and default <A HREF......> I assume?
I am far from a javascript wonder but perhaps this gets you started.
when you data is not there run these lines
document.getElementById('<yourid>').style.display = 'block';...
My question to you is WHEN do you want to perform the check?
I think preventing people to type anything you don't want ( like numbers ) can be done either onKeyPress or Onsubmit, where onsubmit...
<SCRIPT LANGUAGE="JavaScript">
function GetIframeHeight(iframe) {
// The IFrame tag must have a unique ID attribute.
var MyIframeHeight =...
Morning
I guess reading and using this article could get you started.
http://www.wolfcreekconsulting.com/support/techlib/web/DynamicallyResizedIframesPart2.php
/Fons
Morning Abu
not a wonder in javascript/ajax myself but does
$(document).ready(function() {
$("#map").css({
height: 500,
width: 600
});
var myLatLng = new google.maps.LatLng(49.177342,...
On my website i have several forms and links that use the same method to retrieve the data that should be shown on the website.
Till now all are working great, except one. and it's driving me nuts....
Siince using echo "$row[firstName]\n"; is considered a risk, many providers have disabled this option.
what could work is (asuming that firstName is column 3 in your table
echo "$row[3]\n";...
:):):)
found your website and get your picture better now.
ok for me the best would be to follow this road:
include rosestad.php in your index.php
rosestad.php should have the profile of...
Further to that, to speed up the script (and make it more transparent, consider using:
switch ($d) {
case 0: //sunday
// add your time checker here
break;
case 1:...
What ever you do in your script above, the result is always the same.
$file = 'rosestad.php';
what you perhaps need to check is how 'rosestad.php' is working, i guess when they present a...
Wondering, did you try to name $datetime different?
Else it could be a error in the line above setting $datetime.
please paste some more code if it is not working yet
/Fons
sure it is not THE place to put it, but works like a charm for me.
$sql = 'some sql words here';
mysql_query("SET NAMES UTF8");
$result = mysql_query($sql,$con);
this forces every...
I guess we are loosing the key question (and digging up some other real coolstuff in between)
- curl request from external source
- parse xml data
- save xml data in the database if updates are...
Had the same problem some time ago.
i resolved it by adding
mysql_query("SET NAMES UTF8");
This also forces the SQL server to reply in the correct way.
worked for me, hope it works for...
<?php
$str = "your DB date";
$strdate = print_r (explode(" ",$str));
$day = date($strdate[1];
$month = $strdate[2];
$year = $strdate[3]
strtotime($day." ".$month." ".$year." 23:59:59");