JQuery :: Difference Between "start A Discussion" And "ask A Question"?
Mar 13, 2011
i am a new. this morning i posted my first question and i had waited all day for it to appear on the Getting Started forum. i just realized i had used the "ask a question" and not "start a discussion". Is it because of "its a question" so it didn't get published? where can i retrieve my question? cause it's not in the "My Account" page. it's kind of long and i didn't keep a copy for record Sorry for posting such a newbie question as "start a discussion".
View 3 Replies
ADVERTISEMENT
Jun 3, 2006
How do people deal with cleint side validation when javascript is turned off? I thought about adding some extra server side validation but I am not sure how to mix the two properly.....
View 3 Replies
View Related
Nov 1, 2004
it seems that the only way to get access to mouse position is via predefined events: mouseover, etc, where the mouse-position/object-beneath-mouse is stored in some properties of the event object such as clientX/target;
these properties are only accessible to me, the web developer, via the event object generated for the event;
so the problem is: what happens if none of the pre-defined events suit me?
specifically - all of the pre-defined events depend on user interaction: onmousemove, onfocus, onscroll, etc;
so if I do not have a user-interaction at some moment but yet still need mouse-position/object-beneath-mouse information I am out of luck ...
UNLESS I know how the event objects gather that info themselves;
for instance, onmouseover -- how does some <div> know that the mouse just moved over it?
I presume that on some internal clock scale, a time_A_mouse_pos is compared to a time_B_mouse_pos; and furthermore all objects in the document are queried at each time_N until some object says "hey, browser, I am located at that position";
so I would like to know how to access this internal communication between the mouse and the document that apparently the 'event' object accesses whenever an event is generated;
View 1 Replies
View Related
Dec 22, 2010
I have found this nice background rotator:
Code:
<style>
body
{
/*Remove below line to make bgimage NOT fixed*/
background-color:black;
background-attachment:fixed;
background-repeat: no-repeat;
[Code]...
when i run it, i have to wait the 9000 timer to c the first image, and i need the page to start with an image and then start the rotation, i have assigned background-image by css, and tried also to use document.body.background, but when i do this the rotator doesnt work.
View 3 Replies
View Related
Oct 20, 2010
I'm studing the jquery API for .eq() and :eq() , As i read in the comments a user said :
I found that using this method instead of the inline string :eq() is faster.
Do these methods hava differences?and which are these differences?
View 3 Replies
View Related
Jul 12, 2011
I've been using 1.3 which allows me to query non-standard attributes on tag. On an anchor I set a value="" attribute and was able to say (in an onclick binding) $(this).attr('value') to get the value. This no longer works with 1.6. Is there another, better way to do this?
View 5 Replies
View Related
Dec 23, 2011
Since jquery 1.7 there is a new method, named: on(). What is the difference between .bind() and .on()?
[URL]
View 1 Replies
View Related
Nov 6, 2011
Was wondering, other then the syntax difference, should the below to bits not end up with the same result?
$("details").not("summary");
$("details :not(summary)");
View 2 Replies
View Related
May 2, 2010
Lets say I had a wrapped set of <p> elements. I understand how slice could return more than one element, but what is the difference between nth-child() and eq()?
$('p:nth-child(3)').css("font-style","italic");
$("p:eq(2)").css("font-style","italic");
$("p").slice(2,3).css("font-style","italic");
View 7 Replies
View Related
Apr 24, 2009
i have two html files index and index1. on index javascript works but after a 1 sec or so redirects to something wired. index1 doesnt work at all.
[Code]...
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).
View 1 Replies
View Related
Feb 23, 2010
I want to give functinality to add and remove rows dynamically using jQuery.
if i add a row in table using "append()" and try to access newly added row,( with last() or slice() ) then it references the the last row before new rows inserted dynamically.
Instead if i use insertAfter(), i can reference the new rows correctly.what can be the issue?
Works wrongly:
$("#tbl2 > tbody > tr").last().append('<tr"><td>1</td><td>2</td><td>3</td></tr>');
$("#tbl2 > tbody > tr").last().remove();
Works as desired :
$('<tr"><td>1</td><td>2</td><td>3</td></tr>').insertAfter($("#tbl2 > tbody > tr").last());
$("#tbl2 > tbody > tr").last().remove();
View 2 Replies
View Related
Oct 30, 2011
I am trying to implement a countdown on my website. I want to calculate the difference between the current date and Jan 1st 2012 at 12:01am. I need to have the format in dd:hh:mm:ss so i can push it into this class.I've been reading posts but can't get it to work properly.
View 1 Replies
View Related
Feb 11, 2011
I am looking for jQuery plugin that can give difference between two textarea content in some highlighted color.
View 1 Replies
View Related
Mar 18, 2011
Problem: I have a piece of HTML-content, with <hr/> as section breaks. I want to replace the <hr/> with a new <div>. Thus, original: <div>Test test test<hr/>Test test test</div> Result: <div>Test test test </div<div>Test test test</div> With $('hr').replaceWith('</div><div>') it does not work, because the replacement is not valid HTML.
I want to create columns, with <hr/> the column-divider. Perhaps there is also a better solution. The editor is creating the content and inserting HR's where a new column should start.
View 1 Replies
View Related
Jan 3, 2011
I'm not sure if this is a jQuery issue or an IE9 Preview7 issue, but I'm seeing different behavior with these two methods. I'm trying to apply a scale transform using CSS:
.grow {
-webkit-transform: scale(1.7);
-moz-transform: scale(1.7);
-ms-transform: scale(1.7);
-o-transform: scale(1.7);
transform: scale(1.7);
}
addClass('grow') works fine, but if I try to add the attributes with css({'-ms-transform': 'scale(1.7)'}), it doesn't work. My preference is to use css() since I'm building a plugin and don't want external dependencies.* You can see a repro here: [URL], but it only works as intended (well, the addClass button) in IE9preview7. I'm interested in what jQuery might be doing differently to cause the behavior. I'm also interested in approaches others have used to do scale transforms that have better browser compatibility. I like the css approach so far because it doesn't seem to force the growth of the parent container like it does when I manually change the height and width with jQuery.
* I assume to use addClass, the CSS class has to be in the HTML page or a linked stylesheet. Nowhere to define it in a jQuery plugin, right?
View 1 Replies
View Related
Oct 5, 2011
I'm working on redesign of a vacation rental company web site, and I'm looking to use a drop down calendar to select the arrival/departure date on the search form. getting the number of nights difference between dates (though I think the code/labels are slightly backward in that example), but I don't know where to start to split off the variables I need. Basically, the search.php file I'm passing the variables to need to be in this format:
Code:
search.php?month=(arrival month digit)&day=(arrival day digit)&year=(arrival year, 4 digits)&days_count=(number of nights)(...plus some other variables...)
how to split things off properly and get a properly formatted URL? I'll experiment a bit, and come back here with sample code
View 1 Replies
View Related
Feb 15, 2011
I created a progress bar with timer, every second = 1% in the progress bar. The problem is that the progress bar does not start.
This is the code I use:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
[Code].....
View 6 Replies
View Related
Apr 4, 2011
I have been using JQuery from last 1 year with IBM RAD 7.0 as IDE and WebSphere 6.1 as app Server without any problem.Now my development environment is upgraded wtih IBM RAD 7.5 and WebSphere 7.0 server.After writing the code in jsp within <JavaScript> tags as [code]i am getting the following error.The function $(HTMLDocument) is undefined.I have included jquery-1.4.2.min.js and even replaced with jquery.min.js.But there is no use.
View 4 Replies
View Related
Jan 9, 2012
I have a countdown clock in bidding. When someone bid within 30 secs clock will reset from 30 sec. In my case clock is reset but timezone difference added. So if bid within 30 sec clock counting down 4 hrs , 30 mins , 30 secs.
My code is below----
"cd".$clock_no is the countdown div
var periods = $("#cd". $clock_no."").countdown('getTimes');
if ($.countdown.periodsToSeconds(periods) < 30) {
periods[6]+=30;
$("#cd1").countdown('change', {until: periods[0] + 'y ' + periods[1] + 'o ' + periods[2] + 'w ' + periods[3] + 'd ' + periods[4] + 'h ' + periods[5] + 'm ' + periods[6] + 's'});
}
View 1 Replies
View Related
Oct 25, 2010
I use simple code
[Code]...
View 2 Replies
View Related
Aug 15, 2011
I have a page on a site that features a list with clickable items in it. When one item is clicked, a div slides down that displays another div with more clickable items. What I am finding is that when I click on two items in the first div quickly, two divs drop down and clutter up the space on the site forcing everything else on the page downward.
$('#cars').click(function () {$("li").removeClass("active_class");
$("#cars").addClass("active_class");
$(".car_type").hide();
$("#cars_div").slideDown("slow");
[Code]..
So basically, the <li> with the id of "cars" removes any active class from the list items, adds the class to the currently selected <li> hides the .car_type and slides down the matching #cars_div. If I click on "cars" and "trucks" quickly, both divs with the class car_type are displayed at the same time.
Is there an easier way to complete all these tasks while toggling between the div that is displayed so only one shows at a time?
View 3 Replies
View Related
Aug 10, 2009
I m very new to use ajax. but i know the basics of ajaxcall and basics of javascript. Please help me how to start with makingajax call ..please give me also sample code
View 1 Replies
View Related
May 25, 2009
I have simple problem in which I want to set the difference of 2 datesmax 60 days.I am able to select dates from past in 2 textboxes and I want whenuser select start date , the end date calender should disableeverything after 60 days..here is the code I am using:
Date.format = 'mm/dd/yyyy';
//this function is used to show only past dates in calendar.
$('.date-pick').datePicker(
[code]....
View 1 Replies
View Related
May 23, 2010
I have requirement to manually insert div tag at select locations, I have shown the html and my requirement, please see if you have a solution
Existing
Requirement:
So I dont have access to exact id, but atleast I know the id would start with t1.
View 1 Replies
View Related
Jun 1, 2009
Looking for a script that will start a website at a custom location [URL]tarts page at top: 800px, left: 400px) I am NOT looking for any sort of popup window positioning. When a visitor access the site using their browser I want that page to start at a location I specify like this website does: Please note, I realize this site uses anchor tags to accomplish this. I'm not good enough at Jquery to know how they did it, or modify it so that it also handles points left as well as top.The ideal script would position this point in the center of the browser window.
View 1 Replies
View Related
Aug 4, 2010
I am using the toggle function to hide and show a div. Is there any way I can get the div to be hidden on the page load, and then when when toggle is called, it will show it (since it would be currently hidden).
The way I toggle works for me so far, the div is visible as default, and then once the toggle is activated, it is hidden. I want it to be the opposite.
View 5 Replies
View Related