
brucemand
Members-
Content Count
235 -
Joined
-
Last visited
Community Reputation
1 NeutralAbout brucemand
-
Rank
Member
Previous Fields
-
Languages
BASIC(!!), HTML, aSmatteringOfCSS, aSmudgeOfJS, aPinchOfPHP
Contact Methods
-
Website URL
http://
-
ICQ
0
Profile Information
-
Location
Cyberia
-
Interests
maintaining a sustainable personal intake of oxygen
-
nobody has any tips how i should approach this ??
-
i think this ; is the problem;
-
i was about to say this thread is similar;http://w3schools.invisionzone.com/index.php?showtopic=38992and then realised it's the same TS !!but now i've said it anyway...
-
i believe that difference is the problem
-
Trying to use XMLHttpRequest() but not doing it right
brucemand replied to brucemand's topic in JavaScript
aren't technological advances such a beauty ?! -
Trying to use XMLHttpRequest() but not doing it right
brucemand replied to brucemand's topic in JavaScript
ahh, i see now, didn't notice it before.see, what a simple myVal would've done for clarity ?? :)and yes, "Man" ??the guy is a GOD to me !! -
well yes, it's also for my own JS ability in being able to solve a third-party situation.i did disclose i was a beginner which should indicate "buyer beware" i'm not up to jQuery yet, so i can only assume that jQuery is basically JS and follows the same basic rules.that sounds interesting though. (i suppose the event handlers are all in the jQuery.js file ?)
-
yes, good point - i wouldn't call them "bad" though, just outdated and inefficient relative to what the new language makes available.
-
Create an ArrayAn array can be defined in three ways.The following code creates an Array object called myCars:1:var myCars=new Array(); // regular array (add an optional integermyCars[0]="Saab"; // argument to control array's size)myCars[1]="Volvo";myCars[2]="BMW";2:var myCars=new Array("Saab","Volvo","BMW"); // condensed array3:var myCars=["Saab","Volvo","BMW"]; // literal array
-
hmm... let a beginner have a crack at this...<div id="one" onmouseover="do_fade_in('one')" >menu link</div><div id="two" onmouseover="do_fade_in('two')" >menu link</div>
-
Trying to use XMLHttpRequest() but not doing it right
brucemand replied to brucemand's topic in JavaScript
yes, that's better, i wasn't sure "redundant" was the right word to use. it was to find out why TheScientist didn't use POST much with XMLHttpRequest().i probably should have said using POST with XMLHttpRequest() non-asynchronously is redundant.i haven't tested it but i imagine having the <form> and <input type="submit"> in an iframe would also save the whole page from reloading ? thanks for that tip - WHAT A NIFTY in-house function !! :)saves me from making input-checks with RegExp ! is that necessarily a bad thing ? -
Trying to use XMLHttpRequest() but not doing it right
brucemand replied to brucemand's topic in JavaScript
okay, thanks ! thanks for the link.i suppose once we're dealing with server-side, PHP probably does whatever one could imagine, and AJAX would be sort of redundant ? -
no of course not, but that's when you bring in onclick to the <a href>onmouseover/onblur/onfocus are usually "styling" events, no ?
-
i can't seem to figure out how to display the XML file into HTML the right way.here's the XML itself; <wholelist><item> A <title>Alpha <subtit>Dog <rank>1 </rank> <pict>A1.png </pict> </subtit> <subtit>Male <rank>2 </rank> <pict>A2.png </pict> </subtit> </title> <comment>Lorem ipsum blah blah blah. </comment></item><item> B <title>Beta <subtit>Karotene <rank>1 </rank> <pict>B1.png </pict> </subtit> <subtit>Blocker &
- 1 reply
-
- 1
-
-
the best "book" is The Manual at php.net - but any other book can't be bad if you're away from a computer/or internet connection and need to refresh yourself on the basics.plus, if it's not too heavy you can use it to swat the flies as you sit reading it on the toilet....