Monday, May 26, 2008

please tell abt some site frm which i can dwnload it and other free java softwares for my samsung j600

whenever i try to run a java game it says "invalid version"-
if a software is required - then please tell a site to download it.
thanx

I have internet explorer 7. When i go to certain web pages- hotmail- google maps- etc the screen comes up blank however i know that it has loaded the site because the status bar at the bottom of the page does exactly what it should. I have tried updating java but it didn t help- i ve tried setting my security settings to low too. Any ideas? It seems to be a problem with images but i m not sure.

Hi guys i m not having much knowledge in html script-
I want to create random text from list at random to a same link in html source can use java script in this. Can any please give me code for this-
adv. Thanx

im trying to make a bubble sort function- that will set the values in any size array from lowest(element 0) to highest value. it should do the following- compare value of index 0 with 1- if index 1 value is lower swap the values- then index value 1 compare to index value 2- if index value 2 is lower- then swap the values. compare index value 2 with index value 3 and so on. i cant seem to output any results with this code on nestcape. i get a warning message "a sript on this page may be busy- or it may have stopped responding. you can stop the script now or continue to see if the script will complete".
var arrayToSort = [9- 6- 5- 4- 3]
bubbleSort(arrayToSort);

function bubbleSort(arrayToSort)
{
for (var count = 0; count < arrayToSort.length; count = count++)
{
for (var index = 1; index < arrayToSort.length; index = index++)
{
if (arrayToSort[count] > arrayToSort[index])
{
var hold = arrayToSort[index];
arrayToSort[index] = arrayToSort[count];
arrayToSort[count] = hold;
}
}
}
return arrayToSort;

};

No comments: