Log In
Interaction Multiplier IconNormal Weather Castform Don't have an account yet? Register now!
.

Forum Thread

Web Dev fanclub (Welcome evrybody!)

Forum-Index Fan Clubs Inactive Clubs Web Dev fanclub (Welcome evrybody!)
JoeBiden
OFFLINE
Trainerlevel: 38

Forum Posts: 103
Posted: Wed, 20/04/2016 23:13 (8 Years ago)
Welcome To the Web Dev fanclub


Hello and welcome, this is a club where us, amateur and newb Web Devs can chat, exchange tips and maybe even do some challenges :) This place is open for both, people who can and cannot program, each have their indivual space!


Learning space!
Oh i see you are intersted in Coding, Well you are going to have the time of your life, Web developpement in general can be very entertaining. If you are serious about learning here are a few free outlets that will provide you with the necessary information to begin your web developpement path!




CodeAcademy

Codeacademy is the place that i would advise you the most, It is an interactive surfice that goes step by step with you trough the code, Giving you tiny excersise in your lessons, that will make your more familiar with the syntax and basics of developping.




W3schools

If CA was a tutor, W3S is the library! W3s provide a large array of functions troughout different languages (HTML/CSS, JS , PHP, XML) , It also shows you the basics and syntax!





Mozilla Dev corner

Just like w3schools, Mozilla's developpement space is an open source for all dev enthusiats.





Google


There are litterly gazzilions of open sources if you want to lean programming, just google anything you want and you'll find in the matter of seconds.






Sharing space!

Oh, You are already familiar with coding? ^^ Well, Welcome to the club! Please fill the form below!

Show hidden content


[b]Name[/b]:
[b]Age[/b]:
[b]Languages you are familiar with[/b]:
[b]A little bit about your self[/b]:
[b]currentProj[/b]:






Let's have some fun shall we? I won't be heavily moderating this thread, so if someone decides to drop in their codes and asks for help, or puts in a challenge, Thanks! c:


JoeBiden
OFFLINE
Trainerlevel: 38

Forum Posts: 103
Posted: Wed, 20/04/2016 23:15 (8 Years ago)
Here is my form :)
Name: Badr;
Age: 15;
Languages you are familiar with: HTML/CSS, Javascript, PHP, Jquery;
A little bit about your self: I'm a 15 coding enthusiast, started coding at the age of 13, I barely know anything about this ;'; Though i can make basic websites from scratch :) and maybe few scripts
currentProj: I made a mini script that would stop me from autoleaving any websites accidentally!
Show hidden content

window.onbeforeunload = function(event) {
event.returnValue = "You are about to leave!! D:";
};


Currently making a new script for PokeHeroes, It is a search bar for storage boxes, But i'm having some problems with it since the boxes are in seperate pages and uses AJAX to transfer from one another which means i can't access them easily.. (made is JS and JQ),i barely done anything about this script but this is a start for any professionals out there :
Show hidden content

(function() {
'use strict';
$(document).ready(function() {$('#act_menu').append('<td><input type="text" style="margin-left: 50px" id="S_P" /> <button id="Ssearch">Search!</button> <p id="res"></p></td>');$("#Ssearch").click(function() {var inp = $('#S_P').val();inp = $.trim(inp);var src = $('#pkmn_sel_list tr td').text();$('#pkmn_sel_list tr td').css('background-color','inherit');if(src.includes(inp)){$('#pkmn_sel_list tr td:contains('+inp+')').css('background-color','#ffff66');$("#res").html("The pokemon is in this box");}else {$("#res").html("The pokemon is <strong>not</strong> in this box");}});$("#S_P").keydown(function(e) {if( e.which == 13) {$("#Ssearch").click();}});});