|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
JavaScript Resources
Per vbrtrmn's request this is a sticky for some good JavaScript resources. So if you have some good ones then post them in this thread.
This thread will be closely watched and edited, once we have a posting style we should try to stick with it. Thanks guys ![]()
__________________
Jack --------- use code tags become vegetarian python? yes, sir! unarm.org get firefox If I helped you then please click the " " in the upper right-hand corner of my post.
|
|
#2
|
||||
|
||||
|
__________________
Support requests via PM will be ignored! |
|
#3
|
||||
|
||||
|
I requested the Sticky, so I better have a good list, right? Here's what I've got for now, work is going to start getting suspicious
![]() Last Updated: Feb 28, 2005
__________________
------------- vbrtrmn -------------- i think i'm missing some vowels here ------------------------------------ ---------- js.antinoc.net ---------- ------------------------------------ --- The Two Types of Programmers --- Motorcycles are cooler than computers! Last edited by vbrtrmn : October 18th, 2005 at 09:52 AM. |
|
#4
|
||||
|
||||
|
CrossBrowser iFrame Script Content Viewing
I've posted this several times, though it may be useful to make a perm link to it. Code:
// Pass both the ID and NAME of the iframe which you want the innerHTML of.
function iframer(ID,name) {
var saf = navigator.userAgent.match(/Safari/i);
var iFrame = document.getElementById(ID);
var data="";
if (iFrame.contentDocument && !saf) {
// NS6 & Gecko
data=iFrame.contentDocument.defaultView.document.body.innerHTML;
} else if (iFrame.contentWindow) {
// IE 5.5 & 6.x
data=iFrame.contentWindow.document.body.innerHTML;
} else if (saf) {
// This may also support Konqueror, I haven't tested it yet.
// Safari
data=iFrame.document.body.innerHTML;
} else if (document.all) {
// IE 5.5 on the MAC
data=document.frames[name].document.body.innerHTML;
}
return(data);
}
|
|
#5
|
||||
|
||||
|
|
|
#6
|
|||
|
|||
|
Thaus Javascript Tutorial
Thaus Advanced JS Tutorial These are excellent tutorial for javascript (some say the best on the web) Aphonik ![]() |
|
#7
|
||||
|
||||
|
Quote:
Wtf? Who tf is 'trumley', and why tf have you disagreed with that? |
|
#8
|
||||
|
||||
|
Always find the following useful:
Quick referance: http://www.devguru.com/Technologies...ript_index.html Regular Expressions: http://www.regular-expressions.info/javascript.html (hope these arn't duplicates, but I couldn't see em) |
|
#9
|
|||
|
|||
|
Information on what Javascript and Java applets is about
Am A New Member Of This Forum And Doing My Best To Go By The Rules Of The Forum. I Want To Start Learning All About Javascripts And Java Appletts . I Need Some Basic Answers On What Javascripts And Java Applets Is And What It Does. Thanks.
![]() |
|
#10
|
||||
|
||||
|
For Starters, You Need To Stop Writing Like This. If You Don't, Nobody
Will Take You Seriously... ![]() |
|
#11
|
|||
|
|||
|
Thanks for the list of resources...Ray
|
|
#12
|
|||
|
|||
|
http://www.htmlite.com http://www.brainjar.com http://www.sitepoint.com/article/ro |