Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8191799
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T03:59:50+00:00 2026-06-07T03:59:50+00:00

i have this js and qunit test below. why the browser gave me the

  • 0

i have this js and qunit test below. why the browser gave me the listClasses is not defined? How to solve it. I saw mostly did

function ajax() {  
$.ajax({   
});}

but if i did like below how to do the test?

$('#MregisteredClasses').on('pageinit', function listClasses(){
var rowInput = "1";
var pageInput = "1";

$.ajax({
    url: 'http://137.57.102.146:8080/Training/getRegisteredClassesData.html',
    data: ( {rows : rowInput , page : pageInput}),
    type: 'POST',

    success: function(json_results){
    $('#list').append('<ul data-role="listview" data-inset="true"</ul>');
        listItems = $('#list').find('ul');
        $.each(json_results.rows, function(key) {
            html = "<li data-mini='true' id='icon'><a href='http://137.57.102.146:8080/Training/MRegisteredClassesDetail.phone?courseId=" 
                   + [json_results.rows[key].courseId] + "&regNo=" + [json_results.rows[key].regNo] +
                   "' rel='external'>" + json_results.rows[key].courseName+ "</a>"
                   + "<a href='http://137.57.102.146:8080/Training/MRateCourse.phone?courseId=" 
                   + [json_results.rows[key].courseId] + "&regNo=" + [json_results.rows[key].regNo] + 
                   "' rel='external'>RATE THIS COURSE</a></li>" ; 
            listItems.append(html); 
        });

        $('#list ul').listview(); 
    },
});
});

and this is qunit test

 test('asynchronous test', function() {  
// Pause the test, and fail it if start() isn't called after one second  
stop();  

listClasses(function() {  
    // ...asynchronous assertions  
    ok(true, "Success"); 
});  

setTimeout(function() {  
    start();  
}, 2000);  
});  
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T03:59:51+00:00Added an answer on June 7, 2026 at 3:59 am

    $('#MregisteredClasses').on('pageinit', function listClasses(){ ... is incorrect usage.

    The function either needs to be anonymous (i.e. drop the listClasses bit) in which case running listClasses() will fail.

    What you need to do is externalise the function declaration.

    i.e.:

    function listClasses(){
      var rowInput = "1";
      var pageInput = "1";
    
      $.ajax({
        url: 'http://137.57.102.146:8080/Training/getRegisteredClassesData.html',
        data: ( {rows : rowInput , page : pageInput}),
        type: 'POST',
    
        success: function(json_results){
        $('#list').append('<ul data-role="listview" data-inset="true"</ul>');
            listItems = $('#list').find('ul');
            $.each(json_results.rows, function(key) {
                html = "<li data-mini='true' id='icon'><a href='http://137.57.102.146:8080/Training/MRegisteredClassesDetail.phone?courseId=" 
                       + [json_results.rows[key].courseId] + "&regNo=" + [json_results.rows[key].regNo] +
                       "' rel='external'>" + json_results.rows[key].courseName+ "</a>"
                       + "<a href='http://137.57.102.146:8080/Training/MRateCourse.phone?courseId=" 
                       + [json_results.rows[key].courseId] + "&regNo=" + [json_results.rows[key].regNo] + 
                       "' rel='external'>RATE THIS COURSE</a></li>" ; 
                listItems.append(html); 
            });
    
            $('#list ul').listview(); 
        }
    });
    }
    

    Then call the function from the on command:

    $('#MregisteredClasses').on('pageinit', listClasses)
    

    Assuming your script only failed on listClasses(), then I would assume that the listClasses name is just dropped silently.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Use case is this: I want to unit test (in browser, QUnit or something
I have this function // add history paths and save data function AddPath( strTag,
I have a test method created using Selenium, something similar to this: [TestFixture] public
Is it possible to have teardown methods that run after every test in qUnit
I've been looking into javascript test suites and I have found QUnit to be
I have this WxWidgets test source code that compiles, and when run, it shows
I have a QUnit test suite and am calling $('#idForElement').html(); inside a QUnit test
I am trying to use Qunit to test some code, but I have some
I have installed node-qunit using npm and this appeared to work correctly. The following
I have this: var blockRegEx = new Regex((proc sql;)(.*?)(quit;), RegexOptions.IgnoreCase | RegexOptions.Multiline); but it

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.