Jump to content
  • 0

Есть два скрипта script и jquery.js - которые не дают работать друг другу


Mahay
 Share

Question

Есть два скрипта script - отвечает за вкладки на главной

#1


<script type="text/javascript">
jQuery(document).ready(function(){
tabs({
block : "#block&2000",
block2 : "#block2"
});

});
</script>

и jquery.js - которые предназначен для обновления нужной части страницы

#2

<head><script type="text/javascript" src="jquery.js"></script></head>

ниже идет скрипт который позволяет вывести нужную информацию в нужное место на странице

#3


<body>
<div id="content"></div>

<script>
function show()
{
$.ajax({
url: "time.php",
cache: false,
success: function(html){
$("#content").html(html);
}
});
}

$(document).ready(function(){
show();
setInterval('show()',1000);
});
</script>
</body>

Проблема в том, что я не могу совместить эти два скрипта, когда <script type="text/javascript" src="jquery.js"> ставлю выше #1 этого скрипта, то работают только вкладки. Кто может помочь, помогите пожалуйста, буду очень благодарен!!!

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

jquery.js должен быть выше всех, т.е. подключаться первым.

.ready() должен быть 1 на странице.

а чем можно .ready() заменить? мне просто хотелось бы чтобы выводилось и то и другое на одной странице.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy