Reputation: 31848
I'm currently redesigning an old web application that relies heavily on frames. I'd like to get rid of the frames because the painful javascript gyrations they require, but would still like the user to have a movable border between two parts of the screen (view and attributes).
What html element, or html element + javascript, can I use to replace frames?
Upvotes: 3
Views: 1086
Reputation: 6864
I see no other solution than a div
. But you would have to use JS again to allow the dragging of the border. Use of JQuery would be fine here as there is maybe a plugin for that, check the database.
Upvotes: 0
Reputation: 3204
I don't think there are any solutions that won't involve JavaScript. If you're OK with that, you could replace them with <div>
elements and use JavaScript to make them resizeable.
Upvotes: 1