Ask questions and get good answers on mb.jQuery.components

Greetings, I was doing some tests and came across this issue. See the image below (Windows 7 64bit, IE 9)

http://dl.dropbox.com/u/30587978/07-06-2011%2010-46-45%20AM.jpg

I tested it on Firefox and Safari and they both work. Then I changed it to <a rel="title">texttext</a> and it works on IE 9 this time. So it makes me think there could be a problem with rel="text" on IE 9.

Thanks,

Michael

asked Jun 07 '11 at 11:18

mindbodyheart09's gravatar image

mindbodyheart09
213


The only solution I can suggest is to change all the "rel" attribute on the HTML code with "data-type"; for example:

from

<a rel="text"> lorem ipsum </a>

to

<a data-type="text"> lorem ipsum </a>

Then, in the mbMenu.js:

replace wherever you find

.attr("rel")==

with:

.data("type")==

This is what I did on the original code.

Bye, Matteo

answered Jun 08 '11 at 15:43

Matteo%20Bicocchi's gravatar image

Matteo Bicocchi ♦♦
1776129

Thanks Matteo. I'll give it a try.

answered Jun 08 '11 at 22:30

mindbodyheart09's gravatar image

mindbodyheart09
213

Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Tags:

×17
×11
×1
×1
×1

Asked: Jun 07 '11 at 11:18

Seen: 688 times

Last updated: Jul 30 '11 at 04:20

jQuery main site - Matteo Bicocchi