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 6736373
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T11:07:19+00:00 2026-05-26T11:07:19+00:00

I am just starting to learn js and need your help. I have following

  • 0

I am just starting to learn js and need your help.

I have following code:

<html>
<head>
<title>test</title>
    <script src="jquery-1.4.2.min.js" type="text/javascript"></script>
    <script type="text/javascript"> 
        $(function () { 
            $('.test1').(function(){
                    this.each(function () {
                    var a = $(this);
                    alert(a);
                });

            });
        });
    </script>
</head>
<body>
<pre class="test1">
blabla1
blabla2
blabla3
</pre>
</body>
</html>

With this code I wanted to find out how “each” will split the content of the pre-tag. Firebug returns following error message:

XML filter is applied to non-XML value

The error is caused by this command:

$('.test1').(function(){...

What am I doing wrong?

Many thanks in advance!

  • 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-26T11:07:20+00:00Added an answer on May 26, 2026 at 11:07 am

    If you really want to see how .each works in your example, change code to:

    $(function () { 
        $('.test1').each(function(){
            var a = $(this);
            alert(a.html());
        });
    });
    

    However, like @James_Johnson said earlier, the code in .each function will only execute once, so you are likely to see

    blabla1
    blabla2
    blabla3
    

    in your alert message

    To make .each iterate, you have to do sth like

    <html>
        <head>
            <title>test</title>
            <script src="jquery-1.4.2.min.js" type="text/javascript"></script>
            <script type="text/javascript"> 
                    $(function () { 
                        $('.test1 p').each(function(){
                           var a = $(this);
                           alert(a.html());
                        });
                    });
            </script>
        </head>
        <body>
            <pre class="test1">
               <p>blabla1</p>
               <p>blabla2</p>
               <p>blabla3</p>
            </pre>
        </body>
    </html>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

im just starting to learn about sockets and i have been given this code,
I am just starting to learn javascript, so I don't have the skills to
I'm just starting to learn AspectJ, and I have use-case for say, User login.
I'm just starting to learn T-SQL and could use some help in understanding what's
i'm just starting to learn flash and as3, i need to send to a
I'm just starting to learn Java database persistence using Hibernate ORM and have run
Just starting to learn Ruby on Rails. I'm using RoR 3. I have read
I am just starting to learn Silverlight and I need to create a simple
I am just starting to learn jQuery and have gotten some of the basic
Just starting to learn the CakePHP framework. I'm using the Auth component, and all

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.