XSLT, XPath, JDOM, css, xhtml and Javascript

Raithlin

Executive Member
Joined
Jan 4, 2005
Messages
5,049
What do you mean by event driven model? I do everything using jQuery...
 

Veroland

Executive Member
Joined
Aug 24, 2005
Messages
6,304
Some components can register them selfs as being interested in some event. Another component can throw a event and the components that are registered as being interested in that event needs to be notified that the event happened and the relevant data needs to be passed to that component.
 

Saajid

Expert Member
Joined
Aug 8, 2008
Messages
4,559
Seriously though, closing your tags is just good practice. You then know where a tag should start and end and parsing text through e.g. Regex is much easier. Ever tried parsing an HTML document that didn't close all its tag properly and didn't follow any strict standards? I have and it's a nightmare.

Jeff Attwood would strangle you if he knew you were parsing HTML using a Regex.

Read here for more - Parsing Html The Cthulhu Way
 

Raithlin

Executive Member
Joined
Jan 4, 2005
Messages
5,049
Some components can register them selfs as being interested in some event. Another component can throw a event and the components that are registered as being interested in that event needs to be notified that the event happened and the relevant data needs to be passed to that component.
Don't I feel stupid. We used the event driven model in our last WinForms application. I'm so deep into my current ASP.Net project that I totally lost the plot. :D
 
Top