I can't stop the stupid thing from firing off an event when hovering over the children of item.
I only want the event to fire via the div.item element, not the div.itemChild. This is driving me nuts please help.
event.stopPropigation does not work. nor does if(!$(event.source).is('itemChild')), for some reason is() alway returns false.
...
I need a jQuery plugin for uploading video files. it should generate some pictures out of movie as it is uploading ( not after the file uploaded ). Do you know such a plugin? if there is no plugin with this feature, can you suggest me some tutorials or articles about doing such a thing?
...
In this page, when you submit the form the page seems to stay as it is and it just shows a message at the top of the page saying that the message was sent.
The only part I understood was the following code:
jQuery(function() {
var returnMessage = ['I got the message! I will get back to you as soon as I can.'];
jQuery('body').showM...
Here's a function for use as an event handler that makes use of this:
function validate() {
if (this.val() == '') {
return false;
}
}
$(':input').change(validate);
Here's the same function rewritten to take an argument, so that I can call it explicitly:
function validate(field) {
if ($(field).val() == '') {
return fals...
Hi,
I would like to know if its possible to change the contents of the URL in the browser without reloading the page.
I use jQuery and Ajax to load new parts of my page. When I choose product one, the direct link would be "mysite.com/product1" and product two "mysite.com/product2", but I don't want to reload the site to these pages.
Be...
Hello,
I am using :
function ajax(u,s,t) {
jQuery.ajax({type: "POST", url: u, data: query, success: function(msg) { if(t==':eval') eval(msg); else document.getElementById(t).innerHTML=msg; } });
}
This works fine with FF but with IE it doesn't work is there somthing wrong I did?
Thanks in advance.
...
jQuery - How do you convert <br> and <br /> and <p /> and such to new line?
Does jQuery have a built in br2nl() function - this is for converting new lines tags to user-friendly textfield versions.
...
I've written this code for a friend. The idea is he can add a "default" class to his textboxes, so that the default value will be grayed out, and then when he clicks it, it'll disappear, the text will return to its normal color, and then clicking a second time won't clear it:
$(document).ready(function() {
var textbox_click_handler...
how to change the title of page through jquery?
...
I am trying to bring up the HTTP authentication box for handling my login. However, I want to communicate to my database through Ajax. But I dont know how to connect the HTTP authentication box with AJAX.
Any Idea, how to do this? Please also include example
...
How to create flashing title effect like facebook? Means, when you are chatting with someone and a new message is received, a title starts to switch between the original title and a message informing user of the arrival of new message giving a flashing effect.
Explanation by AdrianoKF
Notice the window title cycling between something ...
this my code with in a array i supposed to make tree menu in a table
$myqueryPO->magGrp = array("[grp] => MAIN, [grp] => P1, [grp] => P3")
foreach ( $myqueryPO->magGrp as $dataArray) {
$myGroup = $dataArray[] = $dataArray['grp'];
<tr class="'.$myGroup.'">
<td><a href="#" id="'.$myGroup.'" class="clickMEdata">'.$myGroup.'</a...
Hi,
I am having a problem returning a JsonNetResult for an object when it is a property of another object, however when I fetch the object explicitly it works e.g.
JsonNetResult res = new JsonNetResult();
res.Formatting = Formatting.Indented;
res.SerializerSettings.NullValueHandling = NullValueHandling.Ignore;
res.Data = add...
Here are the requirements:
must not rely on any type of known server, i.e. server code (that produces the map images) is not of a known variety
supports panning and zooming (image is zoomed on the client)
preferably with support for tiling (i.e. pre-fetching image tiles with some simple heuristics)
JQuery friendly
The API doesn't hav...
Hello,
I want to check if an image exists using jquery.
For example how do I check this image exists
http://www.google.com/images/srpr/nav_logo14.png
the check must give me a 200 or status ok
--------------edited-------------------
var imgsrc = $(this).attr('src');
var imgcheck = imgsrc.width;
if (imgcheck==0) {
alert("You have...
Hello All,
I am using the jquery to validate each field in my form and also using the jquery to show a "loading" message after submitting the form. Now, in my case I got confused when I clicked on the submit button the validation messages will be shown and also the loading message. I need only the loading message to be shown once everyt...
Does anybody know of a jQuery plugin that can do something like this: http://www.pronovias.com/
I mean when i hover over it while sliding pictures. i want to zoom in it and zoom out. if doesn't exist plugin like this, how do i write?
this is what i have done.
can any one replace with the correct one with ie support?
<!DOCTYPE html...
What is the best way to load content into my infowindow using ajax?
Right now I am getting a similar effect using iframes but I am not that that happy with it.
I thought this would be straight forward but its confusing me for some reason.
This is how its working right now:
var markers = [];
var infowindow = new google.maps.InfoWindow...
I'm stuck.
It's like the script doesn't have any function at all.
<script>
$("#continue").click(function () {
$.ajax({
type: "POST",
url: "dbc.php?check=First",
data: {full_name : $('#full_name').val()
usr_email : $('#usr_email').val()},
success: f...
My autocomplete results for each item looks something like this:
<h3>Celebrity Sweepstakes</h3><p>0 episodes</p>
But I want only the title inside the H3 to be highlighted. See the 'highlight' function below. I'm not sure how to change that original RegExp to only replace inside the title.
$(".show_autocomplete").autocomplete("/shows....