• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

cross-browser coding

 
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Need of reference(ebook or link) for Cross-browser(Internet Explorer 7 - firefox 2.0) coding standards, tips and problem fixes for javascript and html.

if anyone have crossed and found out remedy in this regard pls help me out.
 
Sheriff
Posts: 67747
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by kalpana black:
pls help me out.


Please use real words when posting to the forums. Abbreviations such as "pls" in place of "please" only serve to make your posts more difficult to read and less likely to generate useful responses.

Please read this for more information.

thanks,
bear
JavaRanch sheriff
 
Bear Bibeault
Sheriff
Posts: 67747
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
These days, the best approach is to adopt a library such as Prototype or jQuery that's already solved these problems for you. Though very different in approach, each of these libraries already takes care of cross-browser differences, especially in the most problematic areas of event handling and Ajax requests.
 
kalpana black
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Can you give more explanation about Jquery
 
Bear Bibeault
Sheriff
Posts: 67747
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
jQuery is a general purpose JavaScript library. It supports and adheres to the principle of Unobtrusive Javascript. It has core support for DOM manipulation, event handling, effects and animation, Ajax and more. It is designed to be easily extended via plugins.

jQuery has very prolific user community that produce lots and lots of useful plugins.

jQuery uses the Wrapper pattern to select one or more DOM elements (using CSS selector syntax). The wrapper possesses the methods used to manipulate the wrapped elements. For example, to hide all <img> elements:


Find out more about jQuery here. If you are interested in my book on jQuery, click on the "Books by Bear" link in my sig.
[ April 14, 2008: Message edited by: Bear Bibeault ]
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic