
SuperPaperSam
Members-
Content Count
29 -
Joined
-
Last visited
Community Reputation
0 NeutralAbout SuperPaperSam
-
Rank
Newbie
-
Using A Cookie To Keep A Sliders State.
SuperPaperSam replied to SuperPaperSam's topic in JavaScript
Yes. It was great. But I have totally redone my site and I have added some pretty cool effects. I did try changing the cookie to make it work with this one but I had no success I get confused when I get to the part when I want the sliders state to be the same. I don't know how to tell the difference between it hidden and visible.Are there any tutorials that you could point me to? I have read some but none cover how to use it with a slider.THANKS! -
Bellow I have some code that I use to move a table up and down. Then I have a div that hides the overflow so it looks like the table is partially gone. I wan't it to be displayed on every page if the user has already chozen to display it. I also want it to stay in the down state (partially hidden) if the lowered it on the previous page.I was hoping someone could show me a way to do this with a cookie.Ask me to clarify if this makes no since. Thanks. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="ht
-
Thanks! It works great ;0
-
I just tryed that and it's still not working.I'm pretty sure it has to deal with this line... <embed src="file()" width="width()" height="height()" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash"></embed> Can I insert the functions like this? src="file()" width="width()" height="height()" Any help would be very nice ;]
-
I give you an A for effort :)I think I need to put "file(+file)"But that's not working :*(
-
It should play the flash file that was selected but for some reason it's not working. :)Please tell me how to fix it (or at least point out the problem) :] <html> <head> <script type="text/javascript"> function file() { var file = document.getElementById("file").value; } function width() { var width = document.getElementById("width").value; } function height() { var height = document.getElementById("height").value; } </script> </head> <body> <form method="post" name="flashplayer"> <label>Flash Content: <input typ
-
You have a PHP File in your folder "jakem" its called "contact.php" Copy and Paste it in a new post.From what I looked at on http://livetest.200u.com/jakem/home.htm It looks as if you forgot to add id's to each field so your PHP is prob. trying to collect data from fields that aren't there...Your Code: <form action="contact.php" method="post" name="ContactForm" style="font-size:10pt"><table><tbody><tr><td>Name:<br><input size="30" name="name" type="text"></td><td>City:<br><input size="30" name="city" type="text"></td><
-
I posted a new topic (Look at it) on the AJAX website a few days ago. But I have not received a response yet .So I was hoping that one of you guys/girls could help me figure out how to accomplish this.Any help would be appreciated!Thanks,SuperPaperSam
-
I'm placing hundreds of games on my site (and other flash content) and I'm looking for a faster way of embedding them.Currently I create a new HTML page and embed them using this code. <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="----------width----------" height="----------height----------"> <param name="movie" value="----------game.swf----------" /> <param name="quality" value="high" /> <embed src="----------game.swf----------" quality="high" plugins
-
I would like to show a message after someone sends me a email. Stating whether there email was sent or not. Right now they are sent to a new page.I don't want the page to reload. And if possible I want to pick where the text would show up.This is the PHP I'm using now. <?php $emailsubject = 'Contact'; $webMaster = 'youwillnotsendmespam@blah.blah'; $nameField = $_POST ['name']; $emailField = $_POST ['email']; $messageField = $_POST ['message']; $body = <<<EOD <hr> Name: $nameField <br> Email: $emailField <br> Message: $messageField <br> <hr>
-
WOW. I just noticed that I should of put Field after it.... wow... im dumb...But thanks for the help
-
I have a PHP form and it works fine but it says that it's from 'nobody' How can I fix this??? I want it to say it was sent from $emailFieldPHP Code <?php $emailsubject = 'Contact'; $webMaster = 'sorry w3schools i dont want everyone knowing my email'; $nameField = $_POST ['name']; $emailField = $_POST ['email']; $messageField = $_POST ['message']; $body = <<<EOD<br><hr><br>Name: $nameField <br>Email: $emailField <br><hr><br>Message: $messageField <br><br><hr><br>EOD; $headers = "From: $email\r\n"; $headers .= "Conten
-
My internet was vary laggy so i guess it triple posted. please delete this one.Sorry.
-
My internet was vary laggy so i guess it triple posted. please delete this one.Sorry.
-
Since I really don't want to deal with AJAX I want to compromise and use a javascript alert... <script language="javascript" type="text/javascript"> alert('Your message was successfully sent!'); </script> or <script language="javascript" type="text/javascript"> alert('Sorry but there has been a error. Make sure you have a working internet connection and try again.'); </script> But how would I put this in my PHP and make each javascript alert start when the email is sent or a error occurs.Please tell me exsactly what to do because im not to great with php.