Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to create a form submission website - akin to university admission form. The website would have different forms - eg. in case of admission we can have a form for academic performance , another form for recommendations etc.

I want there to be an admin section that should allow editing an existing form or adding a new form. Can someone suggest what would be the best approach to do this.

And changes to the form would be reflect in the database and would also show in the front end to the user.

share|improve this question

closed as not constructive by dqhendricks, gnat, Sindre Sorhus, Jon Egerton, Frank Shearar Feb 8 at 12:16

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

http://jsfiddle.net/ASgbC/143/

This might help you for your form...

<div rel="popup_test" class="popup_click">
<div id="popup_title">Title</div>
<div id="popup_text">Text</div>
</div>

css

html, body{width:100%;height:100%;overflow:hidden;}
.popup_click{border:1px solid #008000;background:#80FF80;width:200px;text-align:center;}
.popup_click #popup_title{background:#A0FFA0;}

script

$(document).ready(function() {
 $('.popup_click').show(0).draggable();
var handle = $( ".popup_click" ).draggable( "option", "handle" );
$('.popup_click').draggable( "option", "handle", '#popup_title' );
}); 
share|improve this answer

You could use Jquery UI but for drag and drop.

share|improve this answer

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