Hi,
I'm trying to make "hover" effect which will change height of li (list) element but upward. Using jquery, I've managed to change height of element but downwards.
Is it possible to change direction upwards?
http://www.izrada-weba.com/vedranmarketic/
css file:
body{
background-color: #252524;
text-align: center;
}
#centrira...
I can see in firefox that ul.ulsearch has the class of hidden, but it doesn't work, why?
$('.ulsearch').click(function() {
if ($('.ulsearch').hasclass("hidden")) {
$('.lisearch').fadeIn(100);
}
});
...
Hi,
I have a set of images that open up using slimbox on a website and now I would like to allow these images to run a jqzoom when rolled over so that my clients will see an even more detailed image than the slimbox version.
Do you think this is possible and if so any helpful pointers would be greatly received :)
Regards,
mm
...
I'm trying to change the format of the month that displays in the popup (not in the date that the picker actually returns. I can't find any option anywhere to do this, is there a hack like using substring() or something?
I'm trying to change what's normally displayed as:
<div class="ui-datepicker-title">
<span class="ui-datepicker-...
I'm having an issue using jQuery Tools Tabs (AJAX) along with jQuery UI Dialog (manually doing the AJAX loading for the dialog). The issue is that the dialog is loaded and setup specifically for the current tab (loaded on the tab request via AJAX, along with the tab's content). jQuery UI, when creating the dialog, removes the container...
So I have a quiz users take, and at the end they obviously get results.
There is a "Print Results" feature which the client wants to load into a new window with new css etc...
My question is, how do I pass the results to a new window using javascript? Normally I would do this all with session, but the quiz and results were all done wi...
Hi,
I'm using Jquery to submit a form. I want to loop through the form after the user clicks on a submit button to get the select option. There are many different select fields. The select options are generated using PHP.
A sample of the HTML:
<select id="selectHome_1">
<option></option>
</select>
<select id="selectHome_2">
<optio...
I am using jquery autocomplete , and I've set these vars
$("#some_id").autocomplete("search.php?in=somewhere", {
width: 270,
selectFirst: false
});
$('#some_id').setOptions({max: 5});
As you can see it returns 5 list items ( results ) , and I want to add sixth list item where should be shown some text and how many resu...
I know there has to be an easy solution for this!
http://procollage.com/site10/wall-of-fame/favs-cycle.html
I have a thumbnail image pager, I just want each slide to have a description underneath the large photo. It can be done, right? Help please?!
...
Hello!
Im trying to show and hide a div element with the jquery toggle method. I have a linkbutton that onclick calls the javascript on the page. When clicking the linkbutton the page does a postback even when I declared the javascript function to return false. Someone got an idea how to solve this?
function toggleDiv(){
$('#app...
hello,
i have a popup that is displayed above the link when i hover over a link. there is an image just above the link so the problem is that in ie7 the popup is appearing under the image! . it works well in ie8 and firefox!
the problem that i want to fix is found on this page : http://www.kandscars.com/servicecontracts.php
if you hove...
I am looking for something similar to Facebook massage "To" field.
ExtJS has very nice UI component called Ext.ux.BoxSelect. Is there anything similar for jQuery?
...
Hello everybody,
Referring to this post and this one. I'm trying to implement tag search for my blog/website something similar to SO tag system using jquery autocomplete plugin, I'm using jquery 1.4 latest version so I'm not sure whether it works with it or not, I've used this plugin before once. So without further jibr-jabr here is my ...
Hi folks,
So I was involved in a site rewrite recently and we've gone live with what’s a big improvement on the previous in every way (no it's not perfect, we live by deadlines and are always improving :D) with one exception: in IE6/7 it will lockup after the page has shown. I know it's the JS as with it disabled it's fast and I'm aware...
I have a page with a link, that the user clicks to log our api out of Facebook. When you click on it, it calls a ajax function that calls a php method to delete the users keys from our database, then calls the Facebook api logout function from a JS command. This calls Facebook and ends the users session. Once logged out, it refreshes th...
I need to call a simple method from a WfService.asmx file,using $.get().
It works fine with POST method.Here's the Method:
[WebMethod]
public int Sum()
{
return 10 + 10;
}
Now code using Jquery:
$.get('WfService.asmx/Soma',function(data){
alert(data.d);},"json");
And i get a error message.
What am i doing wrong?
...
See working link.
On the homepage I have two videos (#intro_video & #video_container) which under chrome I have no problems, but in firefox and IE the video doesn't play. It's loading the preview image but when you click play it tries to load for a moment and then goes back to the preview.
I have tried using Jquery Flash (loads #intro...
Hi How to create a CountDown Timer?
Is there any good tutorial about it?
PHP and JQuery based. thanks.
...
Given the following HTML on a page:
<div class='test'>
<p><span id='id1' class='test1 test2 test3'>test text 1</span></p>
<p><span id='id2' class='test1 test2'>test text 2</span></p>
<span class='test2'> </span>
<p><span id='id3' class='test1'>test text 3</span></p>
<p><span id='id4' class='test1 test3 test2'>text4</span></p>
</div>
H...
I need the functionality of a radio selection, without the style.
How can I style something (anything) to work like a radio button, and capture the input in a form?
...