es-sayad
11 years ago

0

i have no idea about the coding plz help

22replies
21voices
320views
1image
overDos3
11 years ago

0

and i :P

Peter [verath]
11 years ago | edited 11 years ago

0

Okay, so here are some javascript (some of them are using jQuery) that might come in handy. Javascript is easiest run in the console tab of firebug/web dev tools.

Selecting all text in a textarea with the name “text” and saving it to a variable:
var text = $('textarea[name=text]').val();

Changing the text of a textarea named ‘text’ to “abcd”:
$('textarea[name=text]').val("abcd");

Splitting a string by a delimiter (in this case \t - a tab character) and saving the result as an array:
var text = "abc\taa\tb"; var textArr = text.split("\t"); // ["abc", "aa", "b"]

Joining an array into a string, separating each element with an underline:
var textArr = ["Hello", "There", "You"]; textArr = textArr.join("_"); // "Hello_There_You"

Sorting an array of strings in lexicographical order (a, b, c, …):
var textArr = ["hi", "dude", "monkey"]; textArr = textArr.sort(); // ["dude", "hi", "monkey"]

Slowly hiding every element of a page. Because why not?:
$('*').slideToggle(5000);

looooool [coolet]
11 years ago

0

Or the simplest way i found yesterday …
you search to google about alphabetical order in csv form :)

oriooo
11 years ago

0

wtf

Med0
11 years ago | edited 11 years ago

0

hello ?
u can use this code
[removed]

or this site
[removed]

and this is the answer
able,about,all,also,among,any,because,been,can,dear,did,either,else,ever,every,from,get,got,had,has,hers,him,his,how,least,like,likely,may,nor,not,off,only,rather,she,should,since,then,there,these,they,tis,too,twas,was,when,where,who,whom,will,would

good Luck

Medo ?

Edit: removed answers and spoilers. Feel free to use his answer, it will NOT work

Voorm
11 years ago

0

Good hint,whole answer : )

Luke [flabbyrabbit]
11 years ago

2

Image

daMage
11 years ago

0

@flabby:
heyyy, where did you find that image? :)

256cypher
11 years ago

0

@verath
tyvm for the code reference, was a piece of cake thx to that and I had no prior js knowledge =)

dalou
11 years ago

0

Funny funny picture lol.

Calzs34
11 years ago

0

He probably edited it.

AIRVirus
11 years ago

0

I suck at coding.

TheJellyCandy
11 years ago

0

LOLZ


0

hahahaha , flabby’s picture looks very cool , :)

NayOo [Nayoo]
11 years ago

0

haha ha
i am surrender this level
my connection is bad
every time expired
ha ha


0

@nayoo , keep trying man…. you will succeed this level :) good luck

J [ColdIV]
11 years ago

0

Well if your connection is bad you should try it with JavaScript if you do it right the connection doesn’t matter that much.
You just have to learn something about JavaScript, so read verath’s post it should help you a lot.

Abhishek [abhirishi7]
11 years ago

0

i wrote the code.but where to paste it.and how to run it.plz reply fast.

Abhishek [abhirishi7]
11 years ago

1

ok i got it. verath thanks a lot man.ur code reaaly helped a lot to understand

ihackforjustice
11 years ago

0

i understood nothing :/ never thought that hacking could bee this hard :(

Hassibullah [roky]
11 years ago

0

var textArr = [“hi”, “dude”, “monkey”];
textArr = textArr.sort();
// [“dude”, “hi”, “monkey”]

[deleted user]
10 years ago

0

@ ihackforjustice - Hacking isn’t always that hard, it can be hard if you don’t know what you’re doing.

You must be logged in to reply to this discussion. Login
1 of 23

This site only uses cookies that are essential for the functionality of this website. Cookies are not used for tracking or marketing purposes.

By using our site, you acknowledge that you have read and understand our Privacy Policy, and Terms of Service.

Dismiss