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

  • Home
  • SEARCH
  • 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 7629387
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T05:49:22+00:00 2026-05-31T05:49:22+00:00

I’m having a problem with $.get that I’ve never had before, and can’t seem

  • 0

I’m having a problem with $.get that I’ve never had before, and can’t seem to be able to fix it. When calling the following function:

function getDefinition (word) {
var toget = "http://www.stands4.com/services/v1/defs.aspx?tokenid=TOKEN&word=" + word;
jQuery.support.cors = true;
$.get(toget, function (data) {
    if(data.indexOf("<definition>") !== -1)
    {
        var definition = data.split("<definition>")[1].split("</definition>")[0];
        return definition;
    }
    else
    {
        return false;
    }
});

}

Internet Explorer (I’ve not tested it on other browsers) throws

“SCRIPT438: Object doesn’t support property or method ‘indexOf’
randomfunctions.js, line 5 character 3” (line 5 character 3 would be
the “i” in “if”)

Earlier I was getting a CORS error, so I added the

jQuery.support.cors = true; 

line. I’ve attempted to alert(data), but the same thing happens. I’m using jQuery 1.6.1.

any help would be greatly appreciated,
Matthew

  • 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-05-31T05:49:23+00:00Added an answer on May 31, 2026 at 5:49 am

    The first thing to do is to set a breakpoint in the debugger right before the .indexOf() call and examine the data variable to see if it’s what you’re expecting and if it has that method or not. Since we don’t know what that data is, that’s hard for us to say, but obviously IE is having difficulty with that.

    .indexOf() can be a method on a string or an array. The array version is relatively new and some older browsers (or behind the times browsers) don’t yet have support for it. If data was an array, that could be the issue. If that was the case, then you can either replace .indexOf() with a manual search through the array or add an ES5 shim for .indexOf(). There’s a shim implementation of Array.indexOf() here on mdn.

    It also looks like you’re trying to return your data from the success handler of the $.get() call. That doesn’t work. The success function is called by the internals of the ajax engine. Returning data to it does nothing – the data will just be dropped.

    From an asynchronous ajax call (which$.get() is by default), you can’t return your data from that suucess handler or from the .get() call. The data is only available in the success handler which happens sometime later. Instead, you must put any code that uses that data in the success handler or in a function call that gets called from the success handler. That’s how asynch ajax calls must work. You can do traditional sequential programming with them.

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

Sidebar

Related Questions

link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I need a function that will clean a strings' special characters. I do NOT
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have a jquery bug and I've been looking for hours now, I can't
I've got a string that has curly quotes in it. I'd like to replace
I have a French site that I want to parse, but am running into
I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and

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.