Welcome Guest, Not a member yet? Register   Sign In
JQuery with forms help needed
#8

[eluser]slowgary[/eluser]
Ouch, what a nasty blog post. There's some real bad advice to be gotten out here on the interweb. Hopefully the advice I've given is much better, but everyone makes mistakes.

As a quick jQuery primer, the framework encourages that you write your javascript in a "select something, do something" sort of way. the dollar sign is a function that's used for (among other things) the selecting part, and the method that follows usually takes care of the doing.

As an example:
Code:
// v- select something
$('#my_id').hide();
           // ^- do something
That code would hide an element with the id "my_id". By "hide" I mean it sets it's CSS 'display' property to the value 'none'.

When I wrote the revised UI, I just did a quick and dirty, assuming that the option value and caption could be the same. If you need them to be unique, try changing that long append line to this:
Code:
$('#causes').append("<div class='cause'>&lt;input type='hidden' name='cause_" + num_causes + "' value='" + $('#cause_select').val() + "'/&gt;&lt;span>" + $('#cause_select:selected').text() + "</span><span class='remove'>[remove]</span></div>");


Messages In This Thread
JQuery with forms help needed - by El Forum - 07-09-2009, 02:44 PM
JQuery with forms help needed - by El Forum - 07-09-2009, 10:15 PM
JQuery with forms help needed - by El Forum - 07-09-2009, 11:23 PM
JQuery with forms help needed - by El Forum - 07-10-2009, 01:57 AM
JQuery with forms help needed - by El Forum - 07-10-2009, 08:22 AM
JQuery with forms help needed - by El Forum - 07-10-2009, 11:10 AM
JQuery with forms help needed - by El Forum - 07-10-2009, 11:23 AM
JQuery with forms help needed - by El Forum - 07-10-2009, 11:39 AM
JQuery with forms help needed - by El Forum - 07-10-2009, 12:28 PM
JQuery with forms help needed - by El Forum - 07-10-2009, 01:16 PM
JQuery with forms help needed - by El Forum - 07-10-2009, 01:25 PM
JQuery with forms help needed - by El Forum - 07-10-2009, 01:38 PM



Theme © iAndrew 2016 - Forum software by © MyBB