alright thanks. i will take a look at that. I'm really bad at js and this has not been written by me. Maybe you could help me fixing it? :)
On Mar 10, 4:17 am, RobG <[email protected]> wrote: > On Mar 10, 2:57 am, iWebKit <[email protected]> wrote: > > > > > > > Iwebkt 4.5 has been released with a lot of fixes: > > - enhanched graphics > > - deleted sliding effect cause right now webkit just does not work > > well on the iPhone and there was a caching problem. > > - form support after loads of people asking me > > - a lot of fixes in the user guide > > > For a more complete changelig visithttp://blog.iwebkit.net > > > To download:http://iwebkit.netandclick on download at the top of > > the window. > > > Please leave your comments and just a reminder: this is supposed to be > > a light, extremly easy to use and a versatile kit. It's not supposed > > to be too heavy trying to exactly reproducing the iphone ui with > > sliding and fading effects... > > I suggest you run your code through a lint program (say JSLint), there > are many undeclared variables and missing semi-colons. > > Where you have expressions like: > > if (element.checked == true ... ) > > you can leave out the comparision, it does nothing useful: > > if (element.checked ... ) > > Where you have: > > option = inputs[a].getElementsByTagName("option"); > > you can save a function call by using: > > option = inputs[a].options; > > It would be nice to include a formatted version of the script source > with comments. > > -- > Rob- Hide quoted text - > > - Show quoted text - --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "iPhoneWebDev" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/iphonewebdev?hl=en -~----------~----~----~----~------~----~------~--~---
