Jump to content

trowley

Member
  • Posts

    25
  • Joined

  • Last visited

trowley's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hi, I have a table and am scrolling the tbody with a jquery plugin. This works fine in desktop as well as ipad. Here is the page: testpage (Just click one of the map markers to view the table that has the scrolling) However, the scrolling on the ipad is not that great, so I would like to use the '-webkit-overflow-scrolling:touch' property to get native scrolling. This does not seem to do anything. Does anyone know if scrolling a tbody on an ipad with this property is possible or maybe the plugin is conflicting? Thanks!
  2. Hi, I am trying to create a case insensitive search. This works in FF but nowhere else(Safari, Chrome, IE): var searchTerm = this.value;//from input box var string1 = point.name;//the string to search var matchTerm = string1.search(searchTerm, "i"); if(matchTerm != -1){ //code goes here }); The search works in all browsers, it is just case sensitive everywhere except FF Thanks!
  3. Thanks for the reply! I actually appended a "#" and then a "?" and it is working fine
  4. Hey: Is there a way to append a unique number to a url with jquery without using '?' - this seems to reload the page or using '#'- which seems to be messing with another jquery element on the page. Thanks!
  5. Hey: Is there a way to set a var within the $(document).ready function and retrieve the value in a function outside of the that? Thanks!
  6. Hey: Can anyone direct me to a tutorial about setting up stream.publish (for Facebook) and Javascript? Thanks!
  7. Hey: Does anyone know of a way to communicate from Flash to Facebook? I would like to post messages to the message board on Facebook. Thanks!
  8. ok, didn't work. For some reason ie8 is caching the Flash so it does not update on page load. ie6&7 (+all other browsers)work fine! I guess i have to do a browser test and load a different file for ie8! Thanks anyway
  9. Thanks for the reply! How do you do that?
  10. Hey: Is there a way to clear the cache from Flash or within the html? I have two Flash files communicating together via php/mysql. Every time you click a link in Flash file A, it sends a number to a mysql table via php and reloads the html page Flash file B is on. Flash file B checks the mysql table via php and loads an xml page based on that number. Works fine in all browsers except ie, which caches the Flash page and keeps loading the same page(unless you clear the cache) So what i need is a way to clear the cache either from Flash or from the html page. Any suggestions? Thanks!
  11. Hey: I have a css drop down menu that overlays a swf and at the edge of the swf movie, the menu gets distorted a bit. Any reason for this? work-arounds? Thanks!
  12. Not using a background image. although if i use one, it seems to work. here is the html: <td><input action="Scripts/FormToEmail.php" method="post" type="submit" value="JOIN" class="button_header"> <img src="images/join_header_arrow.jpg" width="4" height="6" alt="arrow" title="arrow" id="join_arrow" /></td> here is the css: .button_header { font-family:helvetica neue, helvetica, arial, sans-serif; border: none; outline: none; background:transparent; font-size:8pt; color:#464547; padding:0 0 3px 0; } Again, it works in all browsers except ie6/7 Thanks
×
×
  • Create New...