Given the code line
var value = $("#text").val();
and value = 9.61, I need to convert 9.61 to 9:61. How can I use the jQuery replace function here?
|
Given the code line
and |
|||||||||
|
|
Do it like this:
Updated to reflect to current version of jQuery. And also there are a lot of answers here that would best fit to any same situation as this. You, as a developer, needs to know which is which.. |
|||||||||||||||||
|
|
Probably the most elegant way of doing this is to do it in one step. See
compared to:
From the docs:
This requires jQuery 1.4+. |
|||
|
|
I love jQuery's method chaining. Simply do...
|
|||||
|
|
A simple one liner:
|
|||||||||||||
|
|
It can be done with the regular JavaScript function
|
|||||||||
|
Or if your
|
||||
|
|
|
Try this function to replace a string from JavaScript document.
|
||||
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.