Crossbrowser

3,752
Reputation
373 views

Registered User

Name Crossbrowser
Member for 1 year
Seen 4 hours ago
Website
Location Montreal, Canada
Age 25
I'm a Web developer for a start-up in Montreal.
14h
accepted How to access the content of an iframe with jQuery?
2d
accepted jQuery: get certain element from selector
2d
answered jQuery: get certain element from selector
2d
answered How to access the content of an iframe with jQuery?
2d
asked How to access the content of an iframe with jQuery?
Oct
24
answered Content Specific JavaScript and Master Pages
Oct
18
answered What else is there to do? A programmers guide to understanding himself
Oct
8
comment Is there anything like Code Igniter’s DBForge for C#?
Considering there hasn't been any update since January 2008, I'm gonna pass on it.
Oct
8
asked Is there anything like Code Igniter’s DBForge for C#?
Oct
6
comment URL Rewriting under IIS at GoDaddy
Anyone can confirm this?
Oct
2
comment How do I change an <img> tag so that I can choose the image in CSS?
I'd put it in a DIV personally, though there is no "best" tag. If you use a span you need to use display: block or inline-block to be able to set the dimensions.
Oct
2
accepted How do I change an <img> tag so that I can choose the image in CSS?
Oct
2
answered How do I change an <img> tag so that I can choose the image in CSS?
Oct
1
comment Is there an ideal size for background images?
I had to use a 1x1 transparent image in a project to catch clicks in a Div, otherwise the clicks wouldn't be caught on the div, but by whatever was behind it (IE only).
Oct
1
asked Is there an ideal size for background images?
Sep
19
awarded  Enlightened
Sep
19
accepted What is the best way to iterate through a strongly-typed generic List<T>?
Sep
17
comment How to pass data from javascript to c# (asp.net mvc)
That's what I use and it works pretty well.
Sep
12
comment HTML “overlay” which allows clicks to fall through to elements behind it
I think that if the overlay is transparent (as in no background, a transparent image as background will not work), clicks will fall through. I'm not sure if this works for all browsers though.
Sep
9
accepted Javascript return false - from function
Sep
8
comment How to use CSS to square the corner on a submit button
There's a button HTML element and it's sort of like a DIV. Take a look at this wonderful article: particletree.com/features/…
Sep
8
answered How to use CSS to square the corner on a submit button
Aug
28
comment Javascript return false - from function
Even though return false is supposed to work on every machine, my machine REQUIRES that event.returnValue be set to false. I think most machine don't need it, but it's important to know that a tiny fraction do.
Aug
28
answered Javascript return false - from function
Aug
26
awarded  Popular Question
Aug
23
revised Forum software recommendations (.net)
edited tags
Aug
23
accepted Activator.CreateInstance throws ArgumentNullException for parameter ‘Type’
Aug
22
comment Is a “domain object” any class that represents business rules?
@tom w: No one would stop you, but that is not the "correct" way of doing things. As I said, my domain objects do implement a little logic.
Aug
22
comment Is a “domain object” any class that represents business rules?
@tom w: I wouldn't know but I have over 2 years of experience in Domain-Driven Design and that's how we see things where I work.
Aug
22
comment Is a “domain object” any class that represents business rules?
@tom w: The domain object can perform some actions, but only minor calculations. For more complex rules like calculating taxes, a domain service is usually the way to go. @duffymo: indeed, not the only way
Aug
22
comment How do I navigate related entities from a stored procedure that is mapped to an entity
LastName and FirstName work but Region doesn't? Make sure that SearchCustomers returns the expected data first.
Aug
22
answered Is a “domain object” any class that represents business rules?
Aug
22
comment Asp.net force save on detailsview/formview
We use the third method, hook an event on onbeforeunload and confirm that the user wants to leave without saving (we use a dirty flag to know when there's unsaved data so we don't always show the confirmation message).
Aug
22
comment IE6: To support or not to support.
I saw that, but at this point, don't people using IE6 expect sites to be at least partially broken (ideally only aesthetically wise)?
Aug
22
comment Is it required to call ResolveUrl() before LoadControl() ?
To summarize: 2nd way
Aug
18
comment C# date formatting
Use the value you got from the parsing...
Aug
18
answered C# date formatting
Aug
17
answered Why use JQuery?
Aug
12
comment What is the best way to create rounded corners using CSS?
There, I updated the code to use a sprite sheet.
Aug
12
revised What is the best way to create rounded corners using CSS?
improved the implementation to use sprite sheets
Aug
10
comment What is the best way to create rounded corners using CSS?
It can all be simplified using CSS sprites, maybe I'll update my answer.
Aug
10
comment Companies doing Domain driven design
Lol, though the wait page changed... I keep telling my bosses, but we're working hard on client projects, so creating and maintaining the website is not their main concern.
Aug
10
awarded  Yearling
Aug
7
comment IE6: To support or not to support.
@voyager I know, that's why I said "depending on the client's demands". Publicly visible applications will be the most difficult place to remove support for IE6 because there may be millions of visitors. When just considering internal applications, you just have to care about the internal policies.
Jul
14
awarded  Popular Question
Jul
13
awarded  Popular Question
Jul
11
awarded  Notable Question
Jul
9
awarded  Good Answer
Jul
8
awarded  Disciplined
Jul
7
comment ASP.NET server side culture
It may also be the CurrentUICulture if CurrentCulture doesn't work.