guys

I use beautytips-6.x-2.0 but its not working for IE7,, its working fine with firefox and chrome.

but I don't know why its not working on IE7,,, on hover nothing to display

please help,, its urgent

thank you in advance.

CommentFileSizeAuthor
#3 excanvas_r3.gif40.85 KBitserich

Comments

samerhannoun’s picture

any help!!!

aklump’s picture

The IE's require an extra download which is described in the module's README.txt; I've copied it below:


In order for this module to work properly with IE, you will need to download the
ExplorerCanvas library, which can be found here - http://excanvas.sourceforge.net/.
Place the downloaded directory 'excanvas_r3' inside the 'beautytips/other_libs' directory.
Also, make sure that this file is accessable (readable). A standard permission setting
of 755 should work for the excanvas_r3 folder (755 means permission settings - rwxr-xr-x)
On Linux or Mac, you can do this with the command 'sudo chmod -R 755 excanvas_r3'

But wait, an obscure problem too...

The second problem would only affect you if you are using a custom content selector so this may or may not be useful. However I'll paste it here just in case. The first code will not work in IE's, but the second will. The thing to note in my example is that by returning a jquery object, it appeared to work in all browsers except IEs, however by returning the .html() of the element return $('#' + id).html();, it finally worked in all browsers.

This code will NOT work

var dictFilterContentSelect = function (element) {
    var id = element.attr('id').replace('dict-filter-word-', 'dict-filter-definition-');
    return $('#' + id);
  }

This code DOES work

var dictFilterContentSelect = function (element) {
    var id = element.attr('id').replace('dict-filter-word-', 'dict-filter-definition-');
    return $('#' + id).html();
  }
itserich’s picture

StatusFileSize
new40.85 KB

Hello -

I have the excanvas library but must not be installing it correctly. Upon extraction there is no file or folder labeled excanvas_r3

I created a folder titled excanvas_r3 and extracted within that, but that did not cause tips to appear in IE 9.

Attached is a screen shot of the folders within the excanvas_r3 after extraction. Is one of these relabeled excanvas_r3?

And, I have some forms listed within "Restrict text popups to specific forms." Is this the same as the "custom content selector" noted in #2? Thanks.

itserich’s picture

Based on this issue it appears the excanvas_r3 directory should be created, and the entire contents extracted within it.

http://drupal.org/node/1087028

Tips still do not appear in IE 9, must be something else.

ohcray’s picture

Where exactly should this code (in #2) be pasted?

pifagor’s picture

Issue summary: View changes
Status: Active » Closed (outdated)