Jump to content

makkura

Member
  • Posts

    1
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

About makkura

makkura's Achievements

0

Reputation

  1. I believe the primary problem Fire Fox is having is that the input field the search text is being typed in is coming back as a result of the search as well. Putting the code into an example on my system it acts that way while yours is coming back with no results so I cannot be certain this is the issue. By removing the search form section from the readable level of DOM space (IE: taking the form outside of the searchable area of the page), I was able to search properly through my test page. I originally had the same issue with the submit button not submitting at first (it was highlighting the input box's text). This is no longer occurring in my test cases and seems to work properly. My solution: Embed the form into an IFrame. Search Page Code: <iframe src="find_form.html"> Find Form </iframe> To get the search function looking at the right window a change in the javascript is necissary as well: Javascript.js: //original //var win = window; //window to search //replacement var win = window.parent; //window to search The only other change I made should not effect the search but in case it does. I changed the search to look up a specific ID to search instead of passing the value in. Hopefully it works for you as well as it did for me. -Makkura
×
×
  • Create New...