you know how COMPUTER works---> you know how THE WORLD does
here is the place where you can find most of how computer works articles
you will really love it
here is where you come without knowledge and leave with some, or come with knowlegde and leave with more
don't leave one article without reading, just take the chance
#NOTES:
-this site is good for all people, but is important for computer engineering ant IT students
-the articles here are all for free of course
-you can order a paper copy for the article if you are in thr "ju" or the hashemett university
by calling my number below any day of the week, and the next thursday you will have that copy
-you can order only a part that you choose from the articles by telling me the number next to the article-set(e.g, #1 HARDWARE:HARDWARE BASICS), and send the list of wanted articles
to my e-mail
( fadiffa@yahoo.com )
(0788366458)
// this tells jquery to run the function below once the DOM is ready
$(document).ready(function() {
// choose text for the show/hide link
var showText="Show the hidden text";
var hideText="Hide the text";
// create the toggle link
$("#hide_this").before("
"+showText+""); // hide the content $('#hide_this').hide(); // capture clicks on the newly created link $('a#toggle_link').click(function() { // change the link text if ($('a#toggle_link').text()==showText) { $('a#toggle_link').text(hideText); } else { $('a#toggle_link').text(showText); } // toggle the display $('#hide_this').toggle('slow'); // return false so any link destination is not followed return false; }); });