Jump to content

lev99

User
  • Posts

    206
  • Joined

  • Last visited

Community Answers

  1. lev99's post in Удаление подсказки из ссылки после нажатия was marked as the answer   
    Решил 
    if ($e.attr('title') || typeof($e.attr('data-original-title'))!= 'string') { $e.attr('data-original-title', $e.attr('title') || '').removeAttr('title');на
    fixTitle: function() { var $e = this.$element;if ($e.attr('title') || typeof($e.attr('data-original-title'))!= 'string') { $e.attr('data-original-title', $e.attr('title') || '').attr('title', ''); } },Получаем
    <a id="ammh1" class="south" href="javascript:void(0);" title="" onclick="show_wm()" data-original-title="WebMoney"></a>Если так заменить:
    fixTitle: function() { var $e = this.$element;if ($e.attr('title') || typeof($e.attr('data-original-title'))!= 'string') { $e.attr('data-original-title', $e.attr('title') || '').attr('title'); } },Ссылка будет той которая нужна:
    <a id="ammh1" class="south active" href="javascript:void(0);" title="WebMoney" onclick="show_wm()" data-original-title="WebMoney"></a>сверяем
    <a href="http://google.ru" title="Google" data-original-title="Описание" target="_blank">Google</a>Надеюсь другим тоже пригодиться   
  2. lev99's post in Увеличьте размер активных элементов на странице was marked as the answer   
    Частично решил
    http://jsfiddle.net/enwmps9o/34/
    Добавил
    style="margin:3px;"
×
×
  • 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