Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

~4K People Reached
Member Avatar for nizuya

I'd like to create an html form using custom images for text inputs, text areas, and submit inputs. The text inputs and areas will just be static images but for the submit button I'd like to use a sprite that matches the rest of my website. I'd like to be …

Member Avatar for gujinni
0
109
Member Avatar for nizuya

[CODE]<a href="javascript:document.apply.submit()" >Submit</a>[/CODE] I use this all over my website. It works great every where but on one page. The error is document.apply.submit is not a function. I would include the code but the page really long. Anyone have any ideas what would cause this error?

Member Avatar for nizuya
0
87
Member Avatar for nizuya

I manage a large database of contacts who are recipients of both digital and physical mailings. Currently we use QuickBase to hold all of the information. Whenever we want to send out mailings we have to manually export the data. Additionally, any updates have to be made by a member …

Member Avatar for AndreRet
0
203
Member Avatar for nizuya

My goal is to preload these images for an image swap on the page. It runs on body load but I'm not quite sure why it doesn't work... [CODE] function preload() { imageObj = new Image(); images = new Array(); images[0] = "images/globe2.jpg"; images[1] = "images/stickme2.jpg"; images[2] = "images/monitor2.jpg"; images[3] …

Member Avatar for fxm
0
218
Member Avatar for nizuya

I set the min-height of an object on my page based on the size of the window. It works perfectly in all browsers but IE (of course). How can I fix it? [CODE] function resize() { document.getElementById('container').style.minHeight = window.innerHeight + "px"; } [/CODE] The function runs on body load and …

Member Avatar for nizuya
0
148
Member Avatar for nizuya

I'm writing a form that will include a place to upload a pdf. I would like the upload section to be a separate form in a popup. After the user successfully uploads a file I want the original form/window to update with a link to the uploaded file and a …

Member Avatar for zeah
0
2K
Member Avatar for nizuya

I want to have a strip down the middle of the screen with my websites content as common on many web pages. I don't want to use background images to achieve the look, rather I was thing of having a div tag that would fill the entire height of the …

Member Avatar for almostbob
0
153
Member Avatar for nizuya

Ideally my goal is to have a multi-dimensioned associative array. However it is my understanding that javascript doesn't really do associative arrays. The data I want to store is a list of 4 digit codes associated with building names. Each building may have a different number of codes. I would …

Member Avatar for nizuya
0
91
Member Avatar for nizuya

Basically this is what I have: [code] <div style="float:right; width:500px"> <table width="100%"> <tr> <td>Input Text:</td> <td><input name="textInput" type="text" value="<?=$phpVariable?>" style="width:100%" /></td> </tr> </table> </div> [/code] In every web browser besides IE what this does is make the width of the input field the full width of the column. However, in …

Member Avatar for nizuya
0
190
Member Avatar for nizuya

In an html form, I want a certain field to be invisible when "no" is checked and visible when "yes" is checked. This is my code: html: [code] <form action="pageName.html" method="post" name="formName"> Question? <input name="radioBool" type="radio" value="1" onchange="dispField('textInput');" />yes <input name="radioBool" type="radio" value="0" onchange="dispField('textInput');" />no <br /> <span id="textInput" style="display:none"> …

Member Avatar for nizuya
0
318
Member Avatar for nizuya

Currently I am using a combination of .htaccess + .htpasswd to require a user name and password for a directory on my website. Is it possible to do something similar, but to only require a [I]password[/I] and NOT a user name? I would like it so the people who log …

Member Avatar for nizuya
0
138
Member Avatar for nizuya

This is something I've always had a problem with but never asked about... If I am floating two columns via div tags, one left and one right (such as navigation on the left column and main content on the right), Then I have two more things floating inside the right …

Member Avatar for vsmash
0
95
Member Avatar for trandrewo

Hey guys! I know this might sound strange, but I am trying to use CSS to format a P section to be centered, [I]but only if that P contains an embedded video[/I]. Is there a CSS statement I can use to apply formatting to only those P's that contain OBJECT's …

Member Avatar for diafol
0
130
Member Avatar for DBB1

Hello, :-O If some one could tell me how I can have vertical border on the right side of each cell. [B]Suppose my table tag has the following code:[/B] [CODE]<table style="border-style:solid; border-width:1px; border-color:red;>[/CODE] [B]and my <td> tag has the following code:[/B] [CODE]<td style="vertical-align:top; text-align:left;">[/CODE] I would like to know: [LIST=1] …

Member Avatar for DBB1
0
83
Member Avatar for nomisf1

HI im trying to added extra fields to my register.php , but i keep getting a error message saying 'Error:user not added to database' I've simply tried to edit the original code using the same methods used for the previous fields yet it still doesn't work. im sure my mysql …

Member Avatar for nizuya
0
88
Member Avatar for nizuya

I have a normal html document with an iframe pointed to a .php document (with links to other php documents). I would like the iframe height an/or width to change when page in the iframe changes. For example the initial page would generate an iframe height/width of 800/600. When you …

Member Avatar for hivenk
0
95
Member Avatar for nizuya

I keep getting sent back and forth between the java and php forums so I'm not sure which language would be best for this anymore... Here's my original question: "I have a normal html document with an iframe pointed to a .php document (with links to other php documents). I …

0
65
Member Avatar for nizuya

Could someone tell me how to make an iframe resize based on the content without having to refresh the parent frame. I have found some things that require java script in the frame document however i'm not sure how to integrate this, as the document my iframe links to is …

Member Avatar for nizuya
0
121