Is there a more elegant way replacing a text inside an html element than :
$el = $("#myDiv");
$el.html( $el.html().replace("something", "something new") );
|
Is there a more elegant way replacing a text inside an html element than :
|
||||
|
|
|||||||||||
|
|
If I understand:
|
|||||||||||
|
|
there is nothing more elegant than the example you wrote! Check this exmple http://blog.chapagain.com.np/jquery-how-to-replace-string-div-content-and-image-src/ |
|||||
|
|
you can try
its different but not sure about elegance. |
||||
|
|