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);
print(", ".join([str(x) for x in range(1,100) if not [y for y in range(2, x) if x%y==0]]))
Or the simplest way i found yesterday …
you search to google about alphabetical order in csv form :)
Unfair Website….!!!!
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
“If you can’t explain it simply, you don’t understand it well enough.”
when the time has come , I shall rise and conquer the world
@nayoo , keep trying man…. you will succeed this level :) good luck
when the time has come , I shall rise and conquer the world
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.
u noe u r dealing wid d rite guy
u noe u r dealing wid d rite guy
11 years ago
0
@ ihackforjustice - Hacking isn’t always that hard, it can be hard if you don’t know what you’re doing.