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>