Vincent Robert

5,456
Reputation
272 views

Registered User

Name Vincent Robert
Member for 1 year
Seen 7 hours ago
Website
Location Paris, FR
Age 27
Excuse any English mistakes :-)
7h
comment using $.get to get page content and render it into div tag
Can you add to your answer the code you are using to include jQuery in your page?
10h
answered using $.get to get page content and render it into div tag
10h
comment Overcoming a basic problem with CSV parsing using the FasterCSV gem
Looks like I'm wrong. "If fields are not enclosed with double quotes, then double quotes may not appear inside the fields." -- tools.ietf.org/html/rfc4180#section-2
10h
comment Overcoming a basic problem with CSV parsing using the FasterCSV gem
Isn't the space saying that the field is actually not surrounded by quotes (since the first char is not a quote) and that quotes should be taken as part of the field content?
1d
comment nocache of linked Javascript
Isn't this what Rails does by default, appending the file modification timestamp to the query
2d
revised Generating JavaScript stubs from WSDL
deleted 1 characters in body; edited tags
2d
awarded  Popular Question
Nov
23
comment How to add non-standard attributes in a valid way
By real errors, I meant important errors like invalid structure or misspelled attribute which might really mess rendering up and make you lose time.
Nov
23
comment How to add non-standard attributes in a valid way
I never meant to make you feel guilty of having invalid code. You seem to be using validation in the right way: detecting coding errors. Now for your specific problem, your back-end validation could have specific cases for those attributes and just issue a warning? That will allow to "half-way pass" while still detecting real errors.
Nov
23
accepted How to add non-standard attributes in a valid way
Nov
23
answered How to add non-standard attributes in a valid way
Nov
23
revised ICalendar parser in PHP that supports timezones
clarification
Nov
23
answered Implicit operator - when is it a good/bad idea?
Nov
23
asked ICalendar parser in PHP that supports timezones
Nov
23
awarded  Notable Question
Nov
20
answered java:how to hide static resources like html ,images from user on jboss platfrom?
Nov
19
comment When NOT to use the static keyword in Java?
Sorry for that, it was an impulsive down vote :)
Nov
19
comment When NOT to use the static keyword in Java?
Please, leave me the time to actually type my comment ;-)
Nov
19
comment When NOT to use the static keyword in Java?
Static is not about accessing the member fields or not. It is about class semantics. If a method applies to instances of the class, it must not be static. In your case, it is your collection instance that is read-only, not the class itself, so the function must be non-static. Static is really about class methods, for factories or utility functions.
Nov
15
answered Checking condition inside a loop
Nov
15
accepted Passing mouse clicks through an overlaying element <div>
Nov
15
answered Passing mouse clicks through an overlaying element <div>
Nov
14
comment Making CSS url() relative to document
No, but it may slow it down because the file first has to be downloaded from the first server, then from the second.
Nov
14
comment Making CSS url() relative to document
I didn't said it was good, I said it would be working...
Nov
14
answered Making CSS url() relative to document
Nov
9
comment Top 3 improvements that Ruby offers?
@Xeoncross, yes you can, either on the object itself or on its class.
Nov
8
revised JavaScript: How to create an Object and filter on those attributes?
added a specific link to the compatibility section of the page
Nov
7
awarded  Cleanup
Nov
7
accepted sorting elements javascript
Nov
7
comment Can I use operators as function callback in PHP?
Fixed title, feel free to revert back if you don't like it
Nov
7
revised Can I use operators as function callback in PHP?
better title
Nov
6
comment sorting elements javascript
Edited to add sorting of DOM nodes, hope this helps :)
Nov
6
revised sorting elements javascript
Added sorting of DOM nodes
Nov
6
answered How to sort javascript object array by element.name
Nov
6
answered sorting elements javascript
Nov
5
answered Why the expression for live needs to be evaluated in jQuery
Nov
3
comment Can I use JavaScript to create a client side email?
Sorry to hear that. It's from an old project using IE6. Feel free to edit to improve :)
Oct
22
answered How can I give control back (briefly) to the browser during intensive JavaScript processing?
Oct
22
comment Sorting Divs in jQuery by Custom Sort Order
Added some comments on where the tricks are :)
Oct
22
revised Sorting Divs in jQuery by Custom Sort Order
Added some explanation of the code
Oct
21
answered Sorting Divs in jQuery by Custom Sort Order
Oct
19
accepted stop the title showing up on hover with jquery?
Oct
17
awarded  Popular Question
Oct
14
awarded  Great Answer
Oct
14
comment Need Help With Getting Cross Domain XML With JavaScript
Maybe this PHP script does not correctly handle url parameters, I didn't tested it. You could have a look on Google to see if a better proxy script exists.
Oct
13
comment Need Help With Getting Cross Domain XML With JavaScript
Are you sure you are using the right URL for the proxy script. Using /proxy.php means that the script is at the root of the server, maybe it is in a directory or something else. You should try with your browser first to retrieve the XML file from musicbrainz.org through your proxy. Once you are successful to retrieve the file through the proxy, you can try to get it using Javascript.
Oct
12
comment JQuery and links - strange situation
I'm out of options for the moment!
Oct
12
answered JQuery and links - strange situation
Oct
12
comment JQuery and links - strange situation
If your Javascript is at the end of your page, then waiting for the DOM to be ready cost you nothing except that you protect yourself against odd/strange/weird/bizarre browser bugs.
Oct
12
answered JQuery and links - strange situation