No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
18 Posted Topics
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 … | |
[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? | |
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 … | |
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] … | |
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 … | |
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 … | |
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 … | |
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 … | |
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 … | |
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"> … | |
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 … | |
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 … | |
Re: [QUOTE=trandrewo;1176942]Basically, I'm trying to modify the parent based on the child...[/QUOTE] As far as I am aware there is no way to do this with html/css alone. Is the page being built dynamically using data base info or something? You can't just apply a class to that specific p tag? … ![]() | |
Re: I'm not quite sure what you are wanting to do... Do you want to keep the border around the whole table or do you mean to replace that with the right side border? In any case, you can use the CSS tag "border-right" and define the style, size and color. … | |
Re: You should try posting this in the php section on the forum. You might have more success. | |
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 … | |
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 … | |
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 … |
The End.