Search Results

Showing results 1 to 40 of 134
Search took 0.02 seconds.
Search: Posts Made By: almostbob ; Forum: JavaScript / DHTML / AJAX and child forums
Forum: JavaScript / DHTML / AJAX 6 Days Ago
Replies: 5
Views: 440
Posted By almostbob
read the javascript, it makes perfect sense to me :)
browse the w3c javascript tutorials (http://www.w3schools.com/js/default.asp) for better help, array processing, and the dom
most I have used...
Forum: JavaScript / DHTML / AJAX 7 Days Ago
Replies: 4
Views: 403
Posted By almostbob
that's the reason to post the code
your code,
not the library code
even though the library code IS as likely to be -poor
Forum: JavaScript / DHTML / AJAX 9 Days Ago
Replies: 4
Views: 403
Posted By almostbob
Post the code
why expect somebody else
to go to your site
hash there way through the links to find your javascripts,
repair them
and post the answers
Forum: JavaScript / DHTML / AJAX 9 Days Ago
Replies: 7
Views: 355
Posted By almostbob
and in 'other browsers' the css may not work
mozilla dom and IE dom use different,
there may be some failure
this is a javascript for setting visibility in both major dom<script...
Forum: JavaScript / DHTML / AJAX 10 Days Ago
Replies: 7
Views: 355
Posted By almostbob
<script type='text/javascript'>
language= is deprecated
Forum: JavaScript / DHTML / AJAX 12 Days Ago
Replies: 5
Views: 440
Posted By almostbob
the user agent chooses its own default style, and there is (to my knowledge) no CSS attributes you can change to determine the masking character.
Of course, this is possible if the password field is...
Forum: JavaScript / DHTML / AJAX 24 Days Ago
Replies: 6
Views: 317
Posted By almostbob
write the descriptions into <divs> with different ID, not the same id visibility hidden
then for the onclick event change the visibility of the div to inline or block
<img src='thisimg.jpg'...
Forum: JavaScript / DHTML / AJAX 25 Days Ago
Replies: 13
Views: 775
Posted By almostbob
<html><head></head><body>This is a popup window,<br>
which may not open on any random system thanks to popup blockers<br>
on the chance that it does open, I want to close it 5 seconds later...
Forum: JavaScript / DHTML / AJAX 25 Days Ago
Replies: 6
Views: 317
Posted By almostbob
thisimg is 80*80
thatimg is 640*500
theotherimg is 1024*768
yourimg is 216*136

You gave no details I made them up
<img src='thisimg.jpg' width='80' height='80' alt='click for credits'...
Forum: JavaScript / DHTML / AJAX 25 Days Ago
Replies: 5
Views: 285
Posted By almostbob
html tags should really be lower case, values quoted, corrected <html>
<head>
<title>Simpler Adder</title>
<script type='text/javascript'> // corrected
<!--
function CalculateSum(Atext, Btext,...
Forum: JavaScript / DHTML / AJAX 25 Days Ago
Replies: 6
Views: 317
Posted By almostbob
<img src='thisimg.jpg' width='80' height='80' alt='click for credits' onclick='document.getElementbyID("credits").innerhtml="File Name - thisimg.jpg<br>File Size - 80px*80px...
Forum: JavaScript / DHTML / AJAX Oct 22nd, 2009
Replies: 4
Views: 480
Posted By almostbob
then you will get a close confirmation dialog, closing the initial window will kill your browser history.

most forms can be self processing, then this problem does not exist
action = self (in...
Forum: JavaScript / DHTML / AJAX Oct 22nd, 2009
Replies: 4
Views: 480
Posted By almostbob
target='_blank' creates a new unnamed window
target='Ralph' creates a new named window, Ralph, Ralph (mywindow, detail, example etc) can be accessed by javascript
the window can be closed <a...
Forum: JavaScript / DHTML / AJAX Oct 19th, 2009
Replies: 3
Views: 288
Posted By almostbob
perl is a server language, a very dynamic language actually
I don't know exactly how, but there is a perl analog to that php script
there are more google results than I can look at...
Forum: JavaScript / DHTML / AJAX Oct 19th, 2009
Replies: 3
Views: 288
Posted By almostbob
mode_rewrite on your apache server (http://httpd.apache.org/docs/1.3/mod/mod_rewrite.html) will display the url however you see fit

or this server side, in this case php, the url is always...
Forum: JavaScript / DHTML / AJAX Oct 9th, 2009
Replies: 2
Views: 408
Posted By almostbob
shoot me down in flames, I could be very wrong
but a while back I think I read on MSDN
notify is a reserved word in the IE DOM,
it may require a name change for that ID
...
Forum: JavaScript / DHTML / AJAX Oct 8th, 2009
Replies: 6
Views: 443
Posted By almostbob
sorry bloke
Its been forever since I used frames,
in my mind it was like tabbing between pages,
focus remains when you tab back

try...
Forum: JavaScript / DHTML / AJAX Oct 8th, 2009
Replies: 6
Views: 443
Posted By almostbob
dont use javascript
use css
the focus or active attributes
<style type='text/css'>
#link1 { background-image: url(Pic11.jpg); }
#link1:active { background-image: url(Pic12.jpg); }
#link1:focus...
Forum: JavaScript / DHTML / AJAX Oct 7th, 2009
Replies: 1
Views: 231
Posted By almostbob
<body onload='history.go(-2)'></body>
Forum: JavaScript / DHTML / AJAX Oct 4th, 2009
Replies: 16
Views: 793
Posted By almostbob
the explanation of the desired function of the script is correct.
but
the script will not work as expected
rollover images are not preloaded
the first time any affected image is rolled over the...
Forum: JavaScript / DHTML / AJAX Oct 3rd, 2009
Replies: 7
Views: 377
Posted By almostbob
the javascript calls the php script on the server and writes the returned html into the same div p or other tag that the original was written
The JQuery library has good instructions and basic...
Forum: JavaScript / DHTML / AJAX Oct 2nd, 2009
Replies: 10
Views: 899
Posted By almostbob
safari is apple,
if a mac does the mac have windows media installed
from the "get windows media player" link included in the original script, that part of it works anyway
Forum: JavaScript / DHTML / AJAX Sep 30th, 2009
Replies: 10
Views: 899
Posted By almostbob
<script type="text/javascript">
<!--//
function setplay(thisfile,ww,hh) {
document.getElementById("MediaPlayer1").src=thisfile;
document.getElementById("MediaPlayer1").style.width=ww;...
Forum: JavaScript / DHTML / AJAX Sep 29th, 2009
Replies: 6
Views: 3,563
Posted By almostbob
have you examined elements sized in ems and %, per W3C recommendations,
to produce pages that do self adjust to window
px are not best practice
Forum: JavaScript / DHTML / AJAX Sep 27th, 2009
Replies: 3
Views: 205
Posted By almostbob
The left image is native 428*536 91.71KB jpg
enlarged it is html resized to 900 * 1100
this image a jpg with little or no compression will scale up like that without image degradation,
any...
Forum: JavaScript / DHTML / AJAX Sep 27th, 2009
Replies: 18
Views: 561
Posted By almostbob
just began reading this thread,
the cut n paste scripts are out of date ,
use deprecated code
"check for IE4 NS4 "
ie is at 8
Nestscape is a dodo, its extinct
replace the scripts
problems...
Forum: JavaScript / DHTML / AJAX Sep 25th, 2009
Replies: 1
Views: 217
Posted By almostbob
"remainder " is referred to as modulus and modulus operator (http://www.w3schools.com/jS/js_operators.asp) is %
you should be able to code it from this short sample or read through the link aboveif(...
Forum: JavaScript / DHTML / AJAX Sep 25th, 2009
Replies: 1
Views: 204
Posted By almostbob
splash page
<body onload='window.open("urltoopenForums");window.location="urltoopenMainpage";' '>
splash page with timeout
<body...
Forum: JavaScript / DHTML / AJAX Sep 21st, 2009
Replies: 10
Views: 553
Posted By almostbob
extra suggestion is to get a code highlighting editor like notepad++ notepad2, or if the IDE you are using supports code highlighting turn it on
wrong code, missing quotes, too many quotes, unclosed...
Forum: JavaScript / DHTML / AJAX Sep 21st, 2009
Replies: 10
Views: 553
Posted By almostbob
<img src="images/bg.jpg" name="mainimage" width="419" height="282">
Should be <img src="images/bg.jpg" id="mainimage" width="419" height="282"> and as previously written by mathewmaxwell
function...
Forum: JavaScript / DHTML / AJAX Sep 20th, 2009
Replies: 2
Views: 290
Posted By almostbob
The alert box stops subsequent processing
comment out the alert box as it is in the prior script and it will work
or place the alert box after the function and it will work
Forum: JavaScript / DHTML / AJAX Sep 17th, 2009
Replies: 3
Views: 343
Posted By almostbob
I like if ( confirm('Please enable java to experience this enhanced page\nClick OK to go to the Java Download page.')) { window.open('http://www.java.com/en/download/','_blank'); }better explanation
Forum: JavaScript / DHTML / AJAX Sep 17th, 2009
Replies: 3
Views: 343
Posted By almostbob
something like
if ( confirm('Please enable java to experience this enhanced page')) { window.open('http://www.java.com/en/download/','_blank'); }
Forum: JavaScript / DHTML / AJAX Sep 16th, 2009
Replies: 3
Views: 444
Posted By almostbob
Ajax , I dont know how it works at all, reading this forum to get info on things that work and dont work before I try any ajax
in php I do something like<input type='text' id='something'...
Forum: JavaScript / DHTML / AJAX Sep 16th, 2009
Replies: 2
Views: 285
Posted By almostbob
parent row <th> child row <td> or class='unsortable'
there were instructions included with the download for sorttable.js, if they are lost go to javascript.internet.com to get another copy of the...
Forum: JavaScript / DHTML / AJAX Sep 15th, 2009
Replies: 3
Views: 929
Posted By almostbob
why are you using a text date,
Humans dont read the database, the computer does, computers do not need human readable data, they work better without it.
date as a timestamp is a numeric 10bytes per...
Forum: JavaScript / DHTML / AJAX Sep 9th, 2009
Replies: 5
Views: 398
Posted By almostbob
textarea IS an input
you could just type in the textarea
Forum: JavaScript / DHTML / AJAX Sep 4th, 2009
Replies: 4
Views: 418
Posted By almostbob
popups are blocked on many systems
better is login opens in a layer above the index page and redirect is automatic
less likely to be affected by security softwares
Forum: JavaScript / DHTML / AJAX Sep 1st, 2009
Replies: 6
Views: 808
Posted By almostbob
** the above is not be valid code in all circumstance **
it validates if <label> is inside one <td> but does not if <label> spans more than one <td> or <tr>

apologies
Forum: JavaScript / DHTML / AJAX Sep 1st, 2009
Replies: 6
Views: 808
Posted By almostbob
html <label> tag
anything within the label is clickable for the checkbox

<label for='check1'>Entire Row<!-- any kind of code --> <input type='checkbox' id='check1' value='yes'> Yes <!-- any kind...
Showing results 1 to 40 of 134

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC