ie7 href search issue

ie7 href search issue

theblakereporttheblakereport Posts: 1Questions: 0Answers: 0
edited April 2010 in General
After trouble shooting with Tobias, who put together the wordpress plugin 'wp-table reloaded', http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/ which uses the great datatables resource. He suggested I ask about the issue I'm facing here. I'm hoping you guys can help!

I'm using a table as a physician finder, you search specialty/name/etc to find them, which i've linked to their profile pages, however searching by linked name like Dr. Guess Who (eg. /find-a-physician/who_guess) somehow isn't searchable in IE7. It actually starts to work if you type in a last name and then delete a few characters.

To see what I mean please see: http://www.wiseregional.com/test2/find-a-physician

Any ideas?

Cheers,

Blake

Replies

  • TomCTomC Posts: 43Questions: 0Answers: 0
    edited April 2010
    First of all you have a TON of repeated js in that page. At least three different version of jQuery alone and two instances of your initialization js.

    Then in your datatable initialization you didn't specify that the first column was html. This is your initialization code:
    [code]
    jQuery(document).ready(function($){
    $("#wp-table-reloaded-id-2-no-1").dataTable({"oLanguage":{"sUrl": "http://www.wiseregional.com/test2/wp-content/plugins/wp-table-reloaded/languages/datatables/lang-en_US.txt"}, "aaSorting": [], "bSortClasses": false, "asStripClasses":['even','odd']});
    });
    [/code]

    Somewhere in there you need the aoColumns array.
    http://datatables.net/usage/columns
This discussion has been closed.