- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
4 Posted Topics
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, …
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 …
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]
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>
The End.