Forum: JavaScript / DHTML / AJAX Nov 21st, 2008 |
| Replies: 4 Views: 842 OK dude your getting anonying. You post another topic about the same thing, and you PM me asking me to help in a thread where i already was.
Go to google, and do some searching. |
Forum: JavaScript / DHTML / AJAX Nov 20th, 2008 |
| Replies: 1 Views: 963 You know google has TONS of examples of how to do this, but here is something i wrote really fast.
setInterval(function() {
document.getElementById('ImageID').src='imagepath?rd=' + new Date()... |
Forum: JavaScript / DHTML / AJAX Nov 19th, 2008 |
| Replies: 4 Views: 1,522 You would have to use javascript and a onload event on the iframe.
(untested)
iframeName.onload=function() {
iframeName.style.height = iframe.document.body.innerHeight;
}; |
Forum: JavaScript / DHTML / AJAX Nov 19th, 2008 |
| Replies: 4 Views: 1,522 If the website loading in the URL has a fixed size then you would have to code something to dig through the iframe and remove the sites fixed width.
But if the sites content is bigger than the... |
Forum: JavaScript / DHTML / AJAX Nov 19th, 2008 |
| Replies: 1 Views: 1,144 Well thats simpe enough,
<iframe id="result" style="width:400px;" scrolling="no" frameborder="0" onload="this.scrolling='auto'"></iframe>
untested but should work |
Forum: JavaScript / DHTML / AJAX Nov 19th, 2008 |
| Replies: 1 Views: 913 I don't see anything wrong with the page... |
Forum: JavaScript / DHTML / AJAX Nov 19th, 2008 |
| Replies: 2 Views: 1,182 Here is a new function that actually loops through the checkboxes:
function updateopen() {
var c_value = "";
var cb = document.getres.checkbox;
for (var i=0; i < document.getres.length... |
Forum: JavaScript / DHTML / AJAX Nov 19th, 2008 |
| Replies: 1 Views: 692 If you are knew to developing websites you will find that IE uses a really screwed up standards for HTML/CSS and you will have to debug your sites in both IE and FireFox.
But i can not help much,... |
Forum: JavaScript / DHTML / AJAX Nov 19th, 2008 |
| Replies: 2 Views: 1,144 The only ways are to use form, cookie, or querystring. |
Forum: JavaScript / DHTML / AJAX Nov 19th, 2008 |
| Replies: 1 Views: 658 I suggest you take a look at some of the bigger JavaScript Frameworks that can help you speed up development and do all the hard stuff.
Some of the top ones:
script.aculo.us... |
Forum: JavaScript / DHTML / AJAX Nov 19th, 2008 |
| Replies: 2 Views: 1,013 Are you getting any javascript errors? |
Forum: JavaScript / DHTML / AJAX Nov 19th, 2008 |
| Replies: 5 Views: 37,060 Most versions of IE do support Opacity but never correctly implemented it so it requires a few work arounds to work fully.
.myImage {
filter: Alpha(Opacity=80); //IE
opacity: 0.8;//other... |
Forum: JavaScript / DHTML / AJAX Nov 19th, 2008 |
| Replies: 4 Views: 842 Are you using any Javascript frameworks in your pages?
If not then you need to learn how to use XMLHTTP. There are plenty of tutorials on google and im 99.99% sure there are dozens of php and ajax... |
Forum: JavaScript / DHTML / AJAX Nov 19th, 2008 |
| Replies: 4 Views: 836 Don't forget my favorite, MooTools (http://www.mootools.net) |
Forum: JavaScript / DHTML / AJAX Nov 19th, 2008 |
| Replies: 3 Views: 4,079 Using the "visibility" property only hides the element, but the space it uses will still be taken up and leave a blank gap in the page.
The easiest way to hide/open a DIV is:
<a href="#"... |
Forum: JavaScript / DHTML / AJAX Nov 19th, 2008 |
| Replies: 1 Views: 1,086 I use MooTools for my JS and there is a "Scroll" class that can be used to scroll to certain elements or coordinates and smoothly. It would be very easy to setup something like what you described.
... |
Forum: JavaScript / DHTML / AJAX Nov 19th, 2008 |
| Replies: 4 Views: 1,586 It really helps if you can post some code, or link to some code, and include any error messages. |
Forum: JavaScript / DHTML / AJAX Nov 19th, 2008 |
| Replies: 10 Views: 1,995 I think what you are looking for is "checked".
document.FromName.checkBoxName.checked
That will return "true" or "false" if the checkbox is enabled or not. |
Forum: JavaScript / DHTML / AJAX Nov 19th, 2008 |
| Replies: 3 Views: 829 CSS goes in style tags and Javascript goes in script tags.
<style type="text/css">
//CSS goes here
</style>
<script type="text/javascript">
//Javascript goes here
</script> |
Forum: JavaScript / DHTML / AJAX Nov 19th, 2008 |
| Replies: 3 Views: 829 Are you wanting a "single file solution" for download, or upload?
You could just zip them up so someone can download a "single file solution".
You can easly add the CSS/Javascript into the HTML... |
Forum: JavaScript / DHTML / AJAX Jan 20th, 2006 |
| Replies: 4 Views: 2,542 So your trying to change the value of the submit button to "click click boom!"? |
Forum: JavaScript / DHTML / AJAX Jan 20th, 2006 |
| Replies: 4 Views: 2,542 What are you trying to do and why isnt it working?
Sorry to lazy to download your code, save it to a HTML file, and guess what it is your trying to do and what isnt working how you want it. |
Forum: JavaScript / DHTML / AJAX Apr 9th, 2005 |
| Replies: 2 Views: 3,376 I dont get what you are trying to do... are you trying to make the table size to be the same for any screen size??? |