Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #25.0K
Ranked #3K
~831 People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums
Favorite Tags

4 Posted Topics

Member Avatar for hunkychop

It can NOT be done with textarea. I'm not sure what you meant by "full WYSIWYG editor" but you do need to use some of the technics being used in a WYSIWYG editor to do what you are trying to do. If you plan to write an IE only application, …

Member Avatar for zasyatkin
0
346
Member Avatar for Inny

Instead of opening the new image, open a HTML page and let that HTML page load the image. There are a many ways to do this and if you can create the HTML page within the same domain, you may want to make use of the "opener" property to grab …

Member Avatar for Inny
0
316
Member Avatar for dev.cplusplus

Wrap the image with a div tag with the "overflow" property set to "hidden" [code] <html> <head> </head> <body> <p>The clip property is here cutting an image:</p> <div style="width:50px; height:200px; overflow:hidden"><img border="0" src="bookasp20.gif" width="120" height="151"> </div> </body> </html> [/code]

Member Avatar for nagoon97
0
60
Member Avatar for ajithraj

The same code should work for IE as well. I tried the following code in IE and it's working fine. <select size="1" style="width:100px"> <option>1</option> <option>2</option> </select>

Member Avatar for ajithraj
0
109

The End.