Forum: JavaScript / DHTML / AJAX May 22nd, 2006 |
| Replies: 11 Views: 2,256 I'm sifting through your HTML and one area that firefox spots as a problem is here (near the bottom):
<img src='http://www.galacticwebdesigns.com/topsites/button.php?u=eltommyo'... |
Forum: JavaScript / DHTML / AJAX May 21st, 2006 |
| Replies: 11 Views: 2,256 Worse News yet, is that it doesn't even load in firefox :eek: |
Forum: JavaScript / DHTML / AJAX May 21st, 2006 |
| Replies: 11 Views: 2,256 k... that didn't answer my questions though :) |
Forum: JavaScript / DHTML / AJAX May 21st, 2006 |
| Replies: 11 Views: 2,256 What kind of internet connection speed are we talking about? What are the buffer sizes set to on windows media player? If you send me the URL, I can tell you how it runs on my box. |
Forum: JavaScript / DHTML / AJAX May 19th, 2006 |
| Replies: 3 Views: 5,933 I just threw this code together, and it works in FireFox 1.5.0.3. and I just tested it with IE 6.0.2800.1106..... eah, it's long. Anyway, you should be able to extract the function from the HTML... |
Forum: JavaScript / DHTML / AJAX Apr 28th, 2006 |
| Replies: 17 Views: 4,701 VB won't run standalone either. You'd need the VB runtimes installed in order for it to work. |
Forum: JavaScript / DHTML / AJAX Apr 24th, 2006 |
| Replies: 2 Views: 2,422 For reasons that are beyond my understanding, we are being moved into the whole new era of having to give things ID's. If someone knows another way, simplier, using names, please let me know, but... |
Forum: JavaScript / DHTML / AJAX Apr 22nd, 2006 |
| Replies: 5 Views: 14,738 <A HREF="#">Link Here</A>? |
Forum: JavaScript / DHTML / AJAX Apr 17th, 2006 |
| Replies: 2 Views: 1,226 Personally, I don't know how good of an idea it is to use a submit button with an onclick event. I could be wrong, and still living in earlier days, but I would use a button, with an onclick, and... |
Forum: JavaScript / DHTML / AJAX Apr 9th, 2006 |
| Replies: 1 Views: 3,641 you could use onLoad in the body tag, like:
<BODY onLoad="formname.submit();">
And if you want to make the function you call wait a given amount of time, you could use "setTimeout" to have it... |
Forum: JavaScript / DHTML / AJAX Mar 29th, 2006 |
| Replies: 6 Views: 2,598 That's something you have to do internally to your windows machine though (which rocks for me, but not for someone trying to do it through a web page... now if we can find out where that same type of... |
Forum: JavaScript / DHTML / AJAX Mar 27th, 2006 |
| Replies: 7 Views: 1,456 *Mumbles Something about VBScript And ActiveX* |
Forum: JavaScript / DHTML / AJAX Mar 25th, 2006 |
| Replies: 7 Views: 1,456 Hmn, that might require a server side language. |
Forum: JavaScript / DHTML / AJAX Mar 22nd, 2006 |
| Replies: 9 Views: 10,320 |
Forum: JavaScript / DHTML / AJAX Mar 22nd, 2006 |
| Replies: 9 Views: 10,320 |
Forum: JavaScript / DHTML / AJAX Mar 20th, 2006 |
| Replies: 9 Views: 10,320 Yeah, I said cookies....
But beyond, the code that you have in both what you posted, and the site in the link..... when you click the radio button, it executes an onclick event.... right? That... |
Forum: JavaScript / DHTML / AJAX Mar 20th, 2006 |
| Replies: 9 Views: 10,320 The answer is simple. You have the onclick events launched when you click a radio button. That function (check) sets a document item to the value of the clicked option. Then when you execute a... |
Forum: JavaScript / DHTML / AJAX Mar 14th, 2006 |
| Replies: 7 Views: 1,713 where is the file saved on your hard-drive? Right click on the file, go to properties, and where does "location" say it's it?
Another alternative, is to simply unzip this attachment, and put the... |
Forum: JavaScript / DHTML / AJAX Mar 14th, 2006 |
| Replies: 7 Views: 1,713 I bet the filename is actually named: java.html.doc, unless you have specifically gone into windows and told it to show you filename extentions. you can open up internet explorer, and go to file... |
Forum: JavaScript / DHTML / AJAX Mar 10th, 2006 |
| Replies: 5 Views: 5,881 Cool. I didn't suspect that they would, but I figured so long as they had source they would be happy..... *shrugs* no biggy. |
Forum: JavaScript / DHTML / AJAX Mar 9th, 2006 |
| Replies: 5 Views: 5,881 or simply build a program that monitors for the existance of that window (the asking window) and then closes it. Attached is the source code (in VB6) should you want it... and you can download the... |
Forum: JavaScript / DHTML / AJAX May 10th, 2005 |
| Replies: 3 Views: 22,631 To my knowledge... NO. You could do it with Multidimensional array, but trying to do it the way above would never work (not in javascript, anyway). An option to consider, is to create your own... |
Forum: JavaScript / DHTML / AJAX May 10th, 2005 |
| Replies: 2 Views: 5,618 |
Forum: JavaScript / DHTML / AJAX May 7th, 2005 |
| Replies: 3 Views: 3,331 Javascript, IMO. Javascript is more readily understandable to most browsers. While VBScript is making some kind of attempt at becoming popular, it may very well only be supported by "popular"... |
Forum: JavaScript / DHTML / AJAX Apr 27th, 2005 |
| Replies: 2 Views: 5,273 Well, With javascript it is going to require you to use cookies. You send the browser a cookie, with the value as the number of visits. Next time they return, read the cookie, increment it, and... |
Forum: JavaScript / DHTML / AJAX Apr 5th, 2005 |
| Replies: 3 Views: 4,381 Some of it could be done in Javascript, and some of it could be done on a server side language, such as Perl (CGI) or PHP. Does the server that you are hosting your site on allow server side... |
Forum: JavaScript / DHTML / AJAX Apr 4th, 2005 |
| Replies: 12 Views: 9,304 that script would require 2 pages, yes, but it's simple to change window.location="highres.html"; to whatever you want to actually do in the event that res is set to whatever resolution we have....... |
Forum: JavaScript / DHTML / AJAX Apr 4th, 2005 |
| Replies: 12 Views: 9,304 you could try checking out this code:
<SCRIPT language="JavaScript">
<!--
if ((screen.width>=1024) && (screen.height>=768))
{
window.location="highres.html";
}
else |
Forum: JavaScript / DHTML / AJAX Apr 1st, 2005 |
| Replies: 4 Views: 3,097 Here is the link to the web design tutorials: http://www.daniweb.com/techtalkforums/forum76.html, I have posted 2 of the intended 4 tutorials there, and hope you find the time to go over them. Yeah,... |
Forum: JavaScript / DHTML / AJAX Apr 1st, 2005 |
| Replies: 4 Views: 3,097 I was unable to edit my previous post in order to include a link to the first tutorial in the Perl/CGI Series, So I apologize for double-posting, but I had no other option. The Link to the tutorial... |
Forum: JavaScript / DHTML / AJAX Apr 1st, 2005 |
| Replies: 4 Views: 3,097 Sorry RS.... the problem with that is that is would violate security measures that have been built into the browsers. I suppose if the users turn their security settings down, this message won't... |
Forum: JavaScript / DHTML / AJAX Mar 31st, 2005 |
| Replies: 3 Views: 15,181 Just A Thought Here, Couldn't You Get The Referer With Javascript (like document.referer), and doesn't it return an entire URL? If this is so, couldn't you split the string (or use substr) and grap... |
Forum: JavaScript / DHTML / AJAX Mar 31st, 2005 |
| Replies: 3 Views: 12,111 I suppose you could do a
somevariable = window.location;
and then do a substr or substring on the url, and see if it's in there. There might be an easier way, but that's probably how... |
Forum: JavaScript / DHTML / AJAX Mar 16th, 2005 |
| Replies: 6 Views: 19,830 I can remain silent if you would rather.... my name says it all. :) |
Forum: JavaScript / DHTML / AJAX Mar 16th, 2005 |
| Replies: 6 Views: 19,830 have you tried debugging it with an alert (to make sure the HTML is importing the script?) something like: alert("made it to such and such function"); and stick that in a function in the external.js... |
Forum: JavaScript / DHTML / AJAX Mar 10th, 2005 |
| Replies: 15 Views: 13,947 Look up something called "chromeless windows." Granted You would have to popup a window, and position it.... but the window would be borderless, titlebarless, everything less....chromeless windows... |
Forum: JavaScript / DHTML / AJAX Mar 10th, 2005 |
| Replies: 5 Views: 16,866 That's EXACTLY what I want, only in a textarea.....but I'd settle just for the cursor going to the textarea. |
Forum: JavaScript / DHTML / AJAX Mar 10th, 2005 |
| Replies: 5 Views: 16,866 Well, In code, as you well know, there are specific line numbers that may be in question when the program tries to run. The textarea is set to not wrap, so, each line is specified by a line break... |
Forum: JavaScript / DHTML / AJAX Mar 9th, 2005 |
| Replies: 2 Views: 6,189 Link me to the HTML (or attach it) |
Forum: JavaScript / DHTML / AJAX Mar 3rd, 2005 |
| Replies: 5 Views: 16,866 Any idea's about a javascript function, that will move you to specific line number in a textarea? I'm making a mini-page where I can edit text/perl files on a server. I want to be able to plug in... |