Jump to content

L8V2L

Members
  • Posts

    788
  • Joined

  • Last visited

Posts posted by L8V2L

  1. Before you spend your time writing too much, you should know that the people who own the actual site do not come to this forum. At least, if they do, they never post.

    Read I'm not saying anything bad about the site!!! I'm saying expand the library "you dam dirty ape{back up in to a corner while looking at y'all with foam in my mouth, breathing heavy}"I like the interface learning here, and just wanted to suggest some change which some I already had in mind. It want hurt to have contributes area of well known programming instructor.Is there anyway to a least suggest this to the people who own the site?!?!?! I mean "MORE MONEY FOR THEM!!! THIER POCKET So ###### FOR THE MONEY!!!" I like this site, and would rather keep advancing my knowledge here, or have the option to advance it here.If you feel I'm trying to draw traffic away from your site, than here: TO ALL WHO READ THIS! W3SCHOOL IS NOT A BAD SITE! I'M JUST PLACING MY SUGGESTION TO HOW I FEEL IT COULD BE EVEN AWESOME-ER!
  2. http://www.w3fools.com/#what-should-be-doneWHAT SHOULD BE DONE!!!I still like this site a lot... even know it hurt me to come across this... I feel as if the issues is that, than why not have another section of editing by visitor!!!! To expand the library... also expanding your pocket if that must be said to get your interest. By opening up to those who have shun you. There are great people who can attribute to your site in a contribute section for more tutorials, to keep the sheeps from looking to other site to expand their knowledge even farther. Ask them, add in an offer of promoting their book on the page they created to attribute. PLEASE!!! I love the interface, and learning steps you use. Please W3School. Make it where you really are connected to W3C by community if never by them.And the icon on the home page! Their color! Make it to where we can change the green to them, so we can have something new to stare at than the green. I could do this by f12, but don't feel like going in there to look for the area... and honestly, I try... But not try, try. More like just click the area, and played with it.Anyway, please take this into consideration!!! Ummm.... Think about your POCKETS!!! MORE MONEY!!!! YOU'RE POCKETS IS SO ###### FOR THE MONEY!!!!Their this guy, who tutorial I watch that really help me alone with y'all with my learning. Please consider asking him to help in return, You'll let him post up links to his site. Bob Tabor! http://www.learnvisualstudio.net/ is his site, and how you can get in contact with him.
  3. There are a ton of things about every language that aren't covered in the tutorials. They are just beginner's tutorials, not in-depth discussions of the languages. The people who wrote the tutorials decided how much of each language they wanted to cover in a beginner's tutorial.Look at the PHP reference, for example, look at this page:http://www.w3schools.com/php/default.aspUnder the heading "PHP 5 References", they claim a "complete reference" for "all PHP functions", which is a joke. Look at the number of sections they link to (Array, Calendar, etc). Now look at the actual PHP function reference, see how many sections are there:http://www.php.net/manual/en/funcref.phpIf you're interesting in going farther with Javascript or jQuery, I would recommend getting a book. There are books about both Javascript and jQuery that have more pages than the entire W3Schools website.

    :(But I like this hand on experience better... Could you tell me other sites that give greater detail but are still for beginner?And books too?If not thanks anyway for replying to my post. Appreciate it!
  4. yo, I guest I should explain. I wanted to still keep the function appendText also while having the jQuery(document).ready(function too.

  5. What specifically are you trying to accomplish? That code is basically 3 ways to do the same thing.

    I found the way! justsomeguy! Since you reply to my stupid question, I'mma email you this too, to make sure you get this! After this you can delete this stupid question, that doesn't supply any directional information to what I'm trying to accomplish.<!DOCTYPE html><html><head><script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script><script>jQuery(document).ready(function(){jQuery("button").click(function afterText(){var txt1="<b>I </b>"; // Create element with HTMLvar txt2=$("<i></i>").text("love "); // Create with jQueryvar txt3=document.createElement("big"); // Create with DOMtxt3.innerHTML="jQuery!";$("img").after(txt1,txt2,txt3); // Insert new elements after img});});</script></head><body><img src="/images/w3jquery.gif" alt="jQuery" width="100" height="140"><br></br><button onclick="afterText()">Insert after</button></body></html>This is what I was trying to do... I guess... it's the only way it seem to satisfy me... And this wasn't even apart of the tutorial for jQuery which what this is from. Also I read from another tutorial, which I can't seem to get the hang of, is that you can use [] as . syntax notation. WHY DIDN'T THIS SITE GO OVER THAT! NO COOKIE FOR YOU!... reference from a you tuber funny silly guy... Any way MAKE THE TOTURIAL!!!!
  6. I want to make this:<!DOCTYPE html><html><head><script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script><script>jQuery(document).ready(function(){function afterText(){var txt1="<b>I </b>"; // Create element with HTMLvar txt2=$("<i></i>").text("love "); // Create with jQueryvar txt3=document.createElement("big"); // Create with DOMtxt3.innerHTML="jQuery!";$("img").after(txt1,txt2,txt3); // Insert new elements after img});});</script></head><body><img src="/images/w3jquery.gif" alt="jQuery" width="100" height="140"><br><br><button onclick="afterText()">Insert after</button></body></html>into a combination of these two:<!DOCTYPE html><html><head><script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script><script>jQuery(document).ready(function (){jQuery("#appendText").click(function(){var txt1="<p>Text.</p>"; // Create text with HTMLvar txt2=$("<p></p>").text("Text."); // Create text with jQueryvar txt3=document.createElement("p");txt3.innerHTML="Text."; // Create text with DOM$("body").append(txt1,txt2,txt3); // Append new elements});});</script></head><body><p>This is a paragraph.</p><button id="appendText">Append text</button></body></html>and:<!DOCTYPE html><html><head><script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script><script>function afterText(){var txt1="<b>I </b>"; // Create element with HTMLvar txt2=$("<i></i>").text("love "); // Create with jQueryvar txt3=document.createElement("big"); // Create with DOMtxt3.innerHTML="jQuery!";$("img").after(txt1,txt2,txt3); // Insert new elements after img}</script></head><body><img src="/images/w3jquery.gif" alt="jQuery" width="100" height="140"><br><br><button onclick="afterText()">Insert after</button></body></html>

×
×
  • Create New...