Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 102
Search took 0.30 seconds.
Search: Posts Made By: hotwheelharry
Forum: JavaScript programming 06-23-2011, 12:33 AM
Replies: 2
Views: 292
Posted By hotwheelharry
if you want to remove a script block, i guess for...

if you want to remove a script block, i guess for dynamic unloading of objects..?? your best bet would be to just remove the object with the following...

function onclick()
{
//remove object...
Forum: Site reviews 06-09-2011, 03:49 AM
Replies: 4
Views: 814
Posted By hotwheelharry
well, pretty much just for fun and because I...

well, pretty much just for fun and because I could.
I wanted to see what was possible with javascript and DOM. I pretty much made this all while I learned how to use JS for real projects. And some...
Forum: Site reviews 06-09-2011, 02:28 AM
Replies: 4
Views: 814
Posted By hotwheelharry
Please review my website full of gadgets!

Hey

I've been working on this for quite some time now in my spare time and want to know what others think of the design and usability. This is not a typical website, this is more of a javascript...
Forum: Post a JavaScript 04-26-2011, 01:51 PM
Replies: 5
Views: 2,080
Posted By hotwheelharry
hmm, server side scripts for that... is that...

hmm, server side scripts for that... is that really the best bet?

I think you could use localStorage. Much faster/easier to make work.

Cookies... lol.
Forum: HTML & CSS 04-26-2011, 01:07 PM
Replies: 13
Views: 867
Posted By hotwheelharry
Ok, ill just use javascript then. Thanks for the...

Ok, ill just use javascript then. Thanks for the help guys.
Forum: HTML & CSS 04-26-2011, 12:39 PM
Replies: 13
Views: 867
Posted By hotwheelharry
Do I really need to calculate the width with...

Do I really need to calculate the width with borders to be able to do this... it seems so inflexible.

I have similar code on many webpages and i can't recalculate all their widths if I change...
Forum: HTML & CSS 04-26-2011, 12:24 PM
Replies: 13
Views: 867
Posted By hotwheelharry
Here, take a look at what I have. I got it...

Here, take a look at what I have. I got it centered.

How can I make the span around the image actually surround the whole image.

http://blackops.infinimous.com/res/paper.html
Forum: HTML & CSS 04-26-2011, 11:52 AM
Replies: 13
Views: 867
Posted By hotwheelharry
I don't want to have to use javascript on the...

I don't want to have to use javascript on the page. Too messy just to accomplish centering image.

I tried span and a tag with display:block and margin:auto;.
If they are not display block, they...
Forum: HTML & CSS 04-26-2011, 11:36 AM
Replies: 13
Views: 867
Posted By hotwheelharry
What tag to wrap img with second border?

What can I wrap an img tag in to give it a double border effect and center it without introducing the hassles of div tags? Span and anchor don't work cause they only show up on the bottom of the...
Forum: DOM and JSON scripting 02-08-2011, 09:58 PM
Replies: 8
Views: 2,448
Posted By hotwheelharry
Json can be parsed into an object. Turn it...

Json can be parsed into an object.

Turn it into an object.
Loop through the object.
On each iteration, write the appropriate tab, name and then value.
If the value is another object, increase...
Forum: JavaScript programming 02-08-2011, 09:43 PM
Replies: 1
Views: 546
Posted By hotwheelharry
<script type="text/javascript"...

<script type="text/javascript" src="src/shCore.js"></script>
<script type="text/javascript" src="src/shBrushJScript.js"></script>

make them in the same folder. see if it works

If not,...
Forum: JavaScript programming 02-08-2011, 09:35 PM
Replies: 1
Views: 1,213
Posted By hotwheelharry
If I understand correctly, and I probably don't...

If I understand correctly, and I probably don't :D, you need help processing the data from the page to the pdf.php script that converts the data and emails it.

So far you have the data from xml...
Forum: JavaScript programming 12-04-2010, 03:40 AM
Replies: 8
Views: 3,085
Posted By hotwheelharry
You speeled s0me th!ngz wrawng. Here you...

You speeled s0me th!ngz wrawng.

Here you go...


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html...
Forum: DOM and JSON scripting 12-04-2010, 03:20 AM
Replies: 2
Views: 2,435
Posted By hotwheelharry
css link.onload question

I am creating link elements dynamically after the page loads (minutes) that load up new css. They load up the css fine but I can't tell when the css file is actually loaded via script.

I have...
Forum: DOM and JSON scripting 11-30-2010, 04:30 AM
Replies: 4
Views: 2,975
Posted By hotwheelharry
If you just want to decide to do the rollover...

If you just want to decide to do the rollover switch based on being at a certain url, this would be it.

var goodURL = "http://www.goodnessurl.com";

$("#Layer-3").addClass("Wrap-2-3").hide();
...
Forum: DOM and JSON scripting 11-30-2010, 04:25 AM
Replies: 2
Views: 1,136
Posted By hotwheelharry
From what I understand, you want to load a list...

From what I understand, you want to load a list of something in a form, based on a textbox input.

This is accomplished via Ajax. Google it if your not familiar.

You first type in your name, you...
Forum: DOM and JSON scripting 11-30-2010, 04:13 AM
Replies: 1
Views: 1,806
Posted By hotwheelharry
Don't even waste your time with IE. As soon as...

Don't even waste your time with IE. As soon as nothing works in it for anyone, everybody will finally switch to FF and Chrome!

PS. Your code to make the map looks fine. Check that contentElem is...
Forum: DOM and JSON scripting 11-30-2010, 04:07 AM
Replies: 1
Views: 1,467
Posted By hotwheelharry
Set the location property of the frame, not the...

Set the location property of the frame, not the window. Get the frame by name with window.frames["frameNameHere"].

<script>

var randomlinks=new Array()
...
Forum: DOM and JSON scripting 11-30-2010, 04:00 AM
Replies: 1
Views: 846
Posted By hotwheelharry
You can only call window.print(), not...

You can only call window.print(), not element.print() and no image information is returned. The return value of print() is just "undefined." The function prints the page to a paper printer, it does...
Forum: DOM and JSON scripting 11-30-2010, 03:56 AM
Replies: 2
Views: 3,583
Posted By hotwheelharry
If, from what I understand, you want to be able...

If, from what I understand, you want to be able to let the user see the image (on their hard drive) before it is uploaded (to your server) by using javascript to set the src of an image from a file...
Forum: JavaScript programming 11-17-2010, 08:03 AM
Replies: 1
Views: 5,442
Posted By hotwheelharry
document.location.reload(true) vs. regular refresh

Is there a difference between right clicking an iframe and reloading post reponse vs. using javascript to reload the frame?

So far, the javascript route hasn't worked for me.

[some context]
I...
Forum: PHP 10-19-2010, 04:27 AM
Replies: 6
Views: 996
Posted By hotwheelharry
Thanks guys, that was very clear.

Thanks guys, that was very clear.
Forum: PHP 10-18-2010, 02:06 PM
Replies: 6
Views: 996
Posted By hotwheelharry
Sorry i I wasn't clear. I know you can...

Sorry i I wasn't clear.

I know you can declare variables with $, but the entire name of the variable is then referenced with the $. It just gets confusing.

Can you reference
$cabbage="gross";...
Forum: PHP 10-18-2010, 10:36 AM
Replies: 6
Views: 996
Posted By hotwheelharry
Variable declaration keywords??

Is there a keyword that you can put before variable declarations in php?

for Example:
php:

$mySpecialVariable = 'some text';

javascript:

var mySpecialVariable = 'some text';
Forum: DOM and JSON scripting 05-18-2010, 05:06 PM
Replies: 0
Views: 3,186
Posted By hotwheelharry
iframe onload after file download??

I created an iframe dynamically, added a form, posted data to a HTTP Handler and returned a file prompt and download to the user (in that same iframe).

Everything works perfectly but... I can't...
Showing results 1 to 25 of 102

 
Forum Jump

All times are GMT +1. The time now is 06:32 AM.