Hallo everyone!

I've a question about jQuery load function .So I have the following page ..

I have to load this page : https://www.mann-hummel.com/online-catalog/EU/rum/vehicle

Is that code correct?

<html>
<title>Load function</title>
<head>
    <script src="http://www.filtreautomobile.ro/core/jquery-latest.js "></script>
    <script src="http://www.filtreautomobile.ro/core/function-demos-script.js"></script>

    <script type="text/javascript">

    var JQFUNCS =
    {
        runFunc:
        {

            "load":
            {
                run: function(id)
                {

                    $('#'+id).load('https://www.mann-hummel.com/online-catalog/EU/rum/vehicle .header');
                },

                reset: function(id)
                {
                    $('#'+id).empty().hide();
                }
            }
        }
    }

    </script>

</head>
<body>


<p><a href="#">Run load</a>


</body>
</html>

Recommended Answers

All 5 Replies

What problem or issue are you having?

It didn't load the page

So are you trying to load this URL which is from another domain? Thats not going to work. Same Origin Policy. there are methods with a different approach.

In addition, the URL you specified includes a space. Even without the space, if I try to access that URL, the web server returns a 500 error.

https://www.mann-hummel.com/online-catalog/EU/rum/vehicle.header

First try to get your page working by loading a test page from your server.

I told you in your previous topic the Same Origin Policy would prevent you from stealing content from someone else's website. Unless you have permission to use their catalogue and they've setup a JSON request for you it will not work.

Ok , thank's solved ..

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.