How could I achieve the following:
document.all.regTitle.innerHTML = 'Hello World';
Using jQuery where regTitle
is my div ID?
Answer
$("#regTitle").html("Hello World");
I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print ...
No comments:
Post a Comment