Click here to Skip to main content
15,881,204 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Write a javascript program in a file named bubble.html
This file should contain a text box named mydata that collects the numbers separated by commas.

A button named "databtn" is used to invoke a javascript function named bubble_sort().This function does not accept any arguments.
The data must be sorted

What I have tried:

<pre><!DOCTYPE html>
<html>
<body>
    <form>
         Enter data to sort: <input type=text name=mydata id=mydata>
    <input type=button name=databtn value="Sort Data" onclick="bubble_sort()">
    </form>
    <script>
        function bubble_sort()
        {
            var data=(document.getElementById('mydata').value);
            int len=data.length;
            alert(len);
        }
    </script>
   
</body>
</html>
Posted
Updated 10-Sep-18 2:39am
Comments
F-ES Sitecore 10-Sep-18 8:39am    
We're not here to do your homework.

1 solution

Quote:
How to do bubble sort program in java script

Seriously ? your main effort is pasting your assignment!
the help your want is us doing your homework because you are a newbie.
It is as efficient as having someone training for you in order to beat an Olympic record.

1) learn Javascript
2) search internet for "Bubble Sort" algorithm and study it, do some examples on a sheet of paper.
3) write your program

We do not do your HomeWork.
HomeWork is not set to test your skills at begging other people to do your work, it is set to make you think and to help your teacher to check your understanding of the courses you have taken and also the problems you have at applying them.
Any failure of you will help your teacher spot your weaknesses and set remedial actions.
Any failure of you will help you to learn what works and what don't, it is called 'trial and error' learning.
So, give it a try, reread your lessons and start working. If you are stuck on a specific problem, show your code and explain this exact problem, we might help.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900