Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Search results

  1. anishtulsyan22

    JavaScript Javascript Ajax success data to be accessible in another Javascript file .

    Hi All, I have two .js files: file1.js and file2.js. In file1.js, I am able to get the data from the database using ajax call, and it is working fine. In file2.js , I want to access the ajax success data which I received in file1.js . How can I do that ? Any help is appreciated. Thanks in...
  2. anishtulsyan22

    JavaScript Javascript InnerHtml not working

    Hi All, My code is as follows: function show_Suggestions_first_product(list) { let listData; if (!list.length) { userValue = inputBox.value; listData = '<li>' + userValue + '</li>'; } else { listData = list.join(''); } console.log(listData); //...
  3. anishtulsyan22

    JavaScript JS is not executing one line of code

    Hi, I am trying to implement a Comparison feature with 3 text Boxes with autocomplete feature. For the 1st text box everything seems to be working fine as of now. For the second text box, autocomplete feature does not seems to work. After a bit of debugging, I came to analyse that, JS is...
  4. anishtulsyan22

    JavaScript Problem with the Search Bar

    Hi All, When I enter text in the search bar , autocomplete feature shows all the related product as expected, But when I remove the text from the input bar and make the text length to 0, it still retains the autocomplete box. Please help me with the related issue. My code is as follows: const...
Back
Top Bottom