How to select multi `eq()` in jqeury? Programming Web Development by cj333 [CODE] page = $("<div id="content"><p>aaa</p><p>bbb</p><p>ccc</p></div>").find('p').eq(0); [/CODE] This can echo `<p>aaa</p>` but How to select multi `eq()` in jqeury? if I need `<p>aaa</p><p>bbb</p>` How to write a jQuery animate in this situation? Programming Web Development by youlichika I need a jqeury animate effection. when I click img1.jpg, img2.jpg will … jquery datepicker rangeselect question Programming Web Development by pietpiraat Hello everyone, i'm using the keith woods jqeury datepicker, now my question is about the rangeselect option, it … Re: image slide accross php page from folder Programming Web Development by branding4you … dont know what is ... lol I have looked at Javascript, JQeury (NO NOT AJAX IT HAS NEVER RUN ON MY WIN… Re: Php jquery insertion problem Programming Web Development by thorin Everything seems fine with your jqeury scripts and all the information passes perfectly. If you still … Re: How to integrate jquery in my PHP site using codeigniter as its framework Programming Web Development by mustafaneguib … folder as such C:\xampp\htdocs\codeigniter\jquery where my jqeury file resides the code that i use is as follows… Re: how to automatic text in a textbox all uppercase? Programming Web Development by designershiv you can do either by php or simply css , **input{text-transform:uppercase;}** even you can use css or jqeury to find particular textbox,Guys Please correct me if am wrong Re: Fade+Slide=Help Digital Media UI / UX Design by <M/> I know I'm gonna need it, but I don't want to write too much of jqeury... So you have any possible solutions... source codes? sites? tutorials? anything? Re: Works in jsfiddle but not on site Programming Web Development by adishardis Ok, yes I have a refernce in my <head>. And other working jquerys. I just dont know how to troubleshoot jqeury when it's not working. I've checked out their homepage but couldn't find anything related to this... (maybe because I don't know what to look after :) Thanks for replying! /Adam Re: HTML5 Form with PHP Programming Web Development by brandon66 Would their be a way to do it with jqeury ajax/php Jqeury/Javascript Submit Form sometimes deletes when not supposed to Programming Web Development by TheFearful Hey everyone, I have a question. I have a web app where you have a table that will either update, delete, or add a user. The update works great but the delete is weird. It deletes just fine, but I ask for a confirmation first before the action is completed. I am using PHP, jquery/javascript, html, and MySQL This is the code that I used for the … Re: Jqeury/Javascript Submit Form sometimes deletes when not supposed to Programming Web Development by hericles I would guess it is because you're not actually stopping the button submission by return false; or event.stopPropagation() so your form is still submitting sometimes. All the cancel button does is close the window but you've still clicked the submit button before that. Why it only happens sometimes, I don't know, probably a matter of timing before … Re: Jqeury/Javascript Submit Form sometimes deletes when not supposed to Programming Web Development by TheFearful I did a preventDefault method and it worked perfectly! Thank you for the input! Re: How to select multi `eq()` in jqeury? Programming Web Development by bvelez352 take the eq() out? that way you'll have all three paragraphs. if you only want the first two to show up, just write. [CODE] $('p:last').hide(); [/CODE] if you want the middle one to hide, write [CODE] <div id="content"><p>aaa</p><p>bbb</p><p>ccc</p></div> $('div#content').find('p').eq(… help with jqeury image scroller Programming Web Development by Ritesh_4 Hello Anyone can pls guide me to a tutorial which can allow me to develop an image scroller shown at the bottom of the page of this link: [url]http://www.breitlingsionairshow.com/fr-airshow-home.html[/url] Re: help with jqeury image scroller Programming Web Development by twiss [url]lmddgtfy.com/?q=marquee+jquery[/url], for example [url]http://remysharp.com/2008/09/10/the-silky-smooth-marquee/[/url] Re: help with jqeury image scroller Programming Web Development by Ritesh_4 thanks, but is there which is more specific to the link I added in the post? Re: help with jqeury image scroller Programming Web Development by gogreen1 [URL="http://vandelaydesign.com/blog/web-development/jquery-image-galleries/"]http://vandelaydesign.com/blog/web-development/jquery-image-galleries/[/URL] check this link..you find more examples :-) accessing json variable from within jqeury script Programming Web Development by Violet_82 Hi chaps, I wonder if you can help me with this. I have the following script: $(document).ready(function(){ init_get_data(); }); var cars_data; function init_get_data(){ my_data={"data1":{"-xmlns:fo":"http://www.w3.org/1999/XSL/Format","-xmlns:inlineData":"Lookup","… Re: accessing json variable from within jqeury script Programming Web Development by pritaeas Without the dash it works (Opera). With the dash you get an error on it. Because it is object notation, variable naming rules apply, and a dash is not a valid character in a name. Re: accessing json variable from within jqeury script Programming Web Development by Violet_82 without dash it only works in opera though, firefox returns null. Point taken about the object notation. That json code (I only pasted a fraction of it, it is absolutely huge) is an XML extract. I have used this http://jsonviewer.stack.hu/ to convert from xml to json, so the dashes I presume have been inserted in the process. DO you think it is … Re: accessing json variable from within jqeury script Programming Web Development by pritaeas I did change the order though, come to think of it. First the var, then the function, then the document ready. Why do you pass all the XML as JSON ? Wouldn't it be easier to process more server-side. Re: accessing json variable from within jqeury script Programming Web Development by Violet_82 ok, hyphens removed it all works now! thanks. there are issues with the server side...it is a long story but at the moment it seems the best way. About about looping through it get out the data and say use it to replace what's on the html? What's the best way to loop through json objects? However, this is part of a bigger thing, so I think after … Re: How to write a jQuery animate in this situation? Programming Web Development by Airshow You need to give the img2 float something of width:200px to rest aginst, then reduce its width in the animation. Insert above the second html block [CODE]<div id="rightFiller" style="float:right;width:200px;">&nbsp;</div>[/CODE] Animate with : [CODE]$(document).ready(function() { $(".font1").… Re: How to write a jQuery animate in this situation? Programming Web Development by youlichika Excuse me, where is the second html block? If I add a image3 at the right of image2, can div2 still be moved? Thanks. [CODE]<a href="#" class="click"> <div class="div11" style="float:left;"> <h1 class="font1" style="z-index:5;">text1</h1> <div class=&… Re: How to write a jQuery animate in this situation? Programming Web Development by Airshow You have two blocks of very similar HTML - the "img1 block" and the "img2 block". Add my filler div immediately above the second block. And yes, you can have a third (img3) block if you want. Its position and behaviour will depend on whether it is floated left or right. [B]Airshow[/B] Re: How to write a jQuery animate in this situation? Programming Web Development by youlichika Ah, I know ,the click to push a empty div and make img2 block run right. Thanks,Airshow. Re: How to write a jQuery animate in this situation? Programming Web Development by Airshow That's it.