[jQuery] InsertAfter Documentation

2009-04-23 Thread AMP
Hello, I'm just getting started, but the Documentation for the InsertAfter Demo is confusing to me: Is it moving the p is what I said... /p (Which it looks like its doing). Or is suposed to Insert something? Thanks, Mike !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN

[jQuery] First Attempt

2009-08-18 Thread AMP
Hello, When I click on the either button, the size changes correctly, but goes right back to the default. What am I doing wrong? $(document).ready(function() { $('#small').click( function() { $(#textsize).addClass(smalltext) }); $('#large').click( function() {

[jQuery] Re: First Attempt

2009-08-18 Thread AMP
could create a test page at jsbin.com, it has an option to include jquery and therefore present live issues AMP wrote:Hello, When I click on the either button, the size changes correctly, but goes right back to the default. What am I doing wrong? $(document).ready(function() { $('#small

[jQuery] validate plugin

2009-08-21 Thread AMP
Hello, I am using the milk sample but cant seem to find how the error message is styled AND where the X comes from. Also, I use javascript:'xmp' + window.document.body.outerHTML+ '/ xmp' to show a rendered page but it doesnt show the X thier either. Thanks, Mike

[jQuery] Passing variables to .click

2009-08-23 Thread AMP
Hello, I was using this: onClick=parsetable('?php echo $Region ?') but now I want to use the JQuery: $(#parsetablebutton).click( function() { How do I pass the parameter to the function? Would I set an attribute and read it with[att=XXX] where the attribute is the echo'd $Region or is there a

[jQuery] Re: Passing variables to .click

2009-08-23 Thread AMP
?Some Text/button then $(#parsetablebutton).click(function() {         var region = $(this).attr(region);  //-- the value from PHP }); again, that's just one way of many On Aug 23, 6:04 pm, AMP ampel...@gmail.com wrote: Hello, I was using this: onClick=parsetable('?php echo

[jQuery] Re: Passing variables to .click

2009-08-25 Thread AMP
' or 'Antarctica'    // alert(myData[id]);  // same as above}); /script div id=id1 class=clickmeText 1/div div id=id2 class=clickmeText 2/div div id=id3 class=clickmeText 3/div On Aug 23, 2:40 pm, AMP ampel...@gmail.com wrote: This is the way I was thinking so could you give me another

[jQuery] Menu flickers open

2009-10-27 Thread AMP
Hello, I have a Jquery enabled menu, but when the page loads, it is open for a split second.(ONLY in IE) I dont know if it a js or css problem. http://ampsoft.com/Testindex.html Thanks Mike