jquery

Load page to Modal Window from form with jQuery

Hi, I´m working on a website with a purchase process. I have a form generated by some PHP that looks like this: <form name="order_form" action="'.$thePayreadApi->get_server_url().'" method="post" id="payer-form"> '.$thePayreadApi->generate_form().' <input type="submit" value="Klicka för betalning" /> </form>'; When the form is submitt...

Jquery add href instead of click event

Hi all, I need to use href instead click event so I can use hover in the following statement. What I am trying to do is to be able to use href as if was click event, so I can attach a function through href, therefore I could use the hover efect which is alredy done on css. Its a delete button, so it would be a grey x and if you hover...

Add link to image dynamically

If i have "img" element id = "myimg". Is posible to add link to "img" without edit html page using jQuery <img id="myimg" src="image.png"> I like to make "myimg" have link like this. <a href="test.html"><img id="myimg" src="image.png"></a> Thank you for reploy. ...

jquery timer implementation

All, Is there a jQuery timer which can start a timer for 20 minutes and display time elapsed? Please point me to a small code for it. var austDay = new getTime(); austDay = new getSeconds(austDay); var duration = 1200; duration += austDay; Thanks ...

Isn't there a standard jQuery pop-up menu component?

I'd expect a right-click-context-menu-style pop-up menu to be a part of jQuery UI. But apparently it isn't. What's the de-facto standard out there? Or is everybody just rolling out their own ones? Example ...

Elegant way of retrieving query string parameter.

Hi All, I am retrieving one query string parameter, and for that my code is <a href="Default2.aspx?Id=1&status=pending&year=2010">Click me</a> Now I want to retrieve "status=pending" and for that I am doing var qString = window.location.search.substring(1); var Keys = qString .split('&'); alert(...

JavaScript/jQuery: Follow path over page

I need to make an animated gif 'fly over a page and follow a path. I'm thinking of using jQuery but would I be right in thinking the only way to do it is manually calculating the percentage of width/height where the shape layer should be placed, then using absolute positioning is the only way to do this? I know there are some amazing jQu...

jquery: tinysort.. "unsort" method to restore default order ?

I'm using tinysort plugin on jQuery and it works great. However I would like if there is an "unsort" option, to restore the default order of my elements. Thanks ...

Get class name using jQuery

Hello, <div class="myclass"></div> I want to get the class name using jQuery And if it has an id <div class="myclass"></div> Thanks Jean ...

Find class in table row

Hello. Take a look at this table: <table cellpadding="0" cellspacing="0" class="order_form"> <tr> <th>Amount</th> <th>Desc</th> <th>Price</th> <th>Total</th> </tr> <tr> <td><input type="text" class="order_count" /></td> <td> <span class="order_desc">Middagstallerk...

Replace all PNGs with GIFs in jquery?

Hi, Is it possible to replace all PNGs across the board with GIFs using jquery? How would I do this? Thanks ...

Get the value of id from spans inside a div using jquery

Hello I want to get the id value from the spans. Thanks Jean ...

Jquery Animation: problem with following the window scroll in IE

I’m trying to make a div follow the window scrollTop. In FF it looks good but in IE (6,7) the animation jumps and causes the window scroll to jump. I've tried easing but it didn't work. My code: <div style="float:left;width:500px;height:4000px; background-color:Blue;"> <br/> </div> <div id="Div1" st...

jQuery Validation Plugin: Invoke errorPlacement function when onfocusout, keyup and click

Hi, I am using the jquery validation plugin and want to use the errorPlacement function to add error messages to the fields title attribute and display just a ✘ next to the field. This works great when the form is submitted with the submit button but when any of the following events are triggered: - onfocusout - click - onkeyup The ...

Overlaying image also fades when images change in IE6 jQ slideshow

I have a pretty basic slideshow fading between images. On top of that slideshow I have a logo that is absolute positioned to stay partly over the slideshow. It works perfectly, but then there is IE6. In IE6 the part of the logo that is overlaying the slideshow also fades when the images change in the slideshow. I really do not want to ...

Jquery.Cycle and IE7 including next Div

Hi All, I'd really appreciate if someone could help me with a strange problem with Jquery.cycle. I've added jQuery.cycle (version 2.72) into a existing application (Prestashop) to slideshow a number of images. On Firefox, Mozilla etc it works brilliantly - on IE7 a bizarre problem occurs. The problem is where I have a <div class="pic...

ASP.NET MVC jQuery Autocomplete HtmlHelper

I was thinking about writing universal HtmlHelper for jQuery autocomplete wire up for ASP.NET MVC and I would like to know first if something like that already exists. Also do you think it even makes sense to write one because so far even by myself I had 4 different scenarios for which I had to customize it (data from the datastore is a...

Merging two jQuery selections

var _sel1 = $('.red'); var _sel2 = $('.yellow'); How can I merge them into one, without using different selectors? // I don't want to do it this way var _sel3=$('.red,.yellow') or $('.red').add('.yellow'); ...

jquery slideToggle strange effect.

Hi all, This is an example of code I have created to explain the situation. It works well but when it toggle to hide the tbody, it does a estrange effect (first expands the tbody by three or four times more than it is and then it collapses straigh away, and when it slide down it will also do it straigh away). When slide down it is not a...

jquery selecting all elements except the last per group

I have a table that looks like: <table> <tr> <td>one</td><td>two</td><td>three</td><td>last</td> </tr> <tr> <td>blue</td><td>red</td><td>green</td><td>last</td> </tr> <tr> <td>Monday</td><td>Tuesday</td><td>Wednesday</td><td>last</td> </tr> </table> What I want is a jquery selector that will choose ...