Jump to content
  • 0

JQuery + IE8


GeSTaM
 Share

Question

столкнулся вот с какой проблемой есть код который при нажатие на кнопку выдает модальное окно, работает везде кроме ИЕ...

точнее и в ИЕ работает но при запущенном отладчике (если отладчик запущен показывает что в файле jquery-1.5.1.js на 2065 строке "Объект не поддерживает это свойство или метод" (elem[ name ] = value;) и грузит скрипт до конца), но если отладчик выключен просто показывает что готово но с ошибкой, недогружает скрипт и кнопки не работают.

как с этим можно бороться?

Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0

Попробовать более позднюю версию jquery

и обновлял и откатывал версию, начинает косячить внутренний функционал...

с версией 1.5.1 все работает прекрасно но останавливается скрипт в ИЕ...

Link to comment
Share on other sites

  • 0

сделайте прототип страницы или пришлите ссылку. Хочу глянуть на скрипт.

jQuery 1.5.1

Html:


<div class="editor-panel">
<div class="panel-bg">
<a title="Добавить аудио" class="icon-btn icon-sound" href="#">Аудио</a>
<a title="Добавить видео" class="icon-btn icon-video" href="#">Видео</a>
<a title="Добавить фото" class="icon-btn icon-pic" href="#">Картинка</a>

</div>
</div>

JS



parent.find('.editor-panel').each(function() {

var hold = $(this);
var textarea = hold.parents('form:first').find('textarea:first');
var textareaId = textarea.attr('id');

hold.find("a.icon-pic").unbind('click').click(function(e){
e.preventDefault();
$('#window_wall_loading').show();

do_request('wall', 'photo', {
"type":"choose",
"owner_id":owner_id,
"user_id":user_id,
"module_caller":"blog_post",
textarea_id: textareaId
}, function(ret) {
modalWindowShow(null,696);
//$('#file_input').hide();
$('#window_wall_loading').hide();
}, 1,0);
});

hold.find("a.icon-sound").unbind('click').click(function(e){
e.preventDefault();
$('#window_wall_loading').show();

do_request('wall', 'photo', {
"type":"audio_choose",
"owner_id":owner_id,
"user_id":user_id,
"module_caller":"blog_post",
textarea_id: textareaId
}, function(ret) {
modalWindowShow(null,696);
$('#window_wall_loading').hide();
}, 1,0);
});

hold.find("a.icon-video").unbind('click').click(function(e){
e.preventDefault();
$('#window_wall_loading').show();

do_request('wall', 'photo', {
"type":"video_choose",
"owner_id":owner_id,
"user_id":user_id,
"module_caller":"blog_post",
textarea_id: textareaId
}, function(ret) {
modalWindowShow(null,696);
$('#window_wall_loading').hide();
}, 1,0);
});
});

Edited by GeSTaM
Link to comment
Share on other sites

  • 0

Похоже на баг. Напиши сюда: http://bugs.jquery.com

По-английски конечно.

да это не баг jquery это глюки ie...

эти же кнопки но на других страницах работают, а на 1 странице их несколько, тогда они отказываются работать. тоже самое с подменой <video> на <object> где то код работает где то тот же самый код не работает (только в ie).

в основном я хотел узнать есть ли какой то способ, что бы ie не останавливал скрипт? так как если запустить в ie "Developer Tools" то покажет строчку, что типа здесь может быть ошибка (!) и прогрузит скрипт до конца и все работает...

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