vote up 1 vote down star

Hi guys, how can I add a string in an empty font tag? Like if in the second font tag there is no value, I will just insert a <br /> tag. How can I do that?

Thanks :)

I have this HTML code:

<P ALIGN="LEFT">
	<FONT FACE="Verdana" style="font-size:10" COLOR="#0B333C" LETTERSPACING="0" KERNING="0">
		Welcome to jQuery Course
	</FONT>
</P>
<P ALIGN="LEFT">
	<FONT FACE="Verdana" style="font-size:10" COLOR="#0B333C" LETTERSPACING="0" KERNING="0">
	</FONT>
</P>
<P ALIGN="LEFT">
	<FONT FACE="Verdana" style="font-size:10" COLOR="#0B333C" LETTERSPACING="0" KERNING="0">
		This is the jQuery Introduction content.
	</FONT>
</P>

And I like the output to be:

<P ALIGN="LEFT">
    	<FONT FACE="Verdana" style="font-size:10" COLOR="#0B333C" LETTERSPACING="0" KERNING="0">
    		Welcome to jQuery Course
    	</FONT>
    </P>
    <P ALIGN="LEFT">
    	<FONT FACE="Verdana" style="font-size:10" COLOR="#0B333C" LETTERSPACING="0" KERNING="0">
            <br />
    	</FONT>
    </P>
    <P ALIGN="LEFT">
    	<FONT FACE="Verdana" style="font-size:10" COLOR="#0B333C" LETTERSPACING="0" KERNING="0">
    		This is the jQuery Introduction content.
    	</FONT>
    </P>
flag

77% accept rate
Could you provide example output, too? – soulmerge May 18 at 7:29
Are you wanting to do this in PHP, or jQuery? Your question references PHP, the html references jQuery and contains no PHP... – Paul Dixon May 18 at 7:30
hi soulmerge and paul, I edited my post and included the sample output. I need to do this in PHP first but if there is a much better solution in jQuery then why not :) – marknt15 May 18 at 7:38

2 Answers

vote up 5 vote down check

You shouldn't be using a font tag.

You can

str_replace("></FONT>", ">$myinserttext</FONT>", $myhtml);

in PHP or

$("font:empty").html("Sample Content");

in jQuery.

link|flag
Thanks antony. I will try both of your solutions :D – marknt15 May 18 at 7:53
It worked Antony thanks :) – marknt15 May 18 at 8:01
vote up 0 vote down

something like

$("font:empty").html("My string");

or append:

$("font:empty").append("My string");
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.