JQuery :: Modifying From Default Setting?
Apr 17, 2010
I'm trying to make a blog and I am facing a problem with the plugin using jQuery 'sidebarTabs'.
The blog is here Paris sportifs My question is: Is it possible to display no one sub-category(none) instead of all sub-categories related to the first title ('Paris Sportifs') The creator of the plugin was very friendly and made me good service, but he said that it is not possible because the jQuery library by default is set to display the first sub-section ('Les bases pour débuter etc
[Code]...
View 2 Replies
ADVERTISEMENT
Nov 25, 2010
I cannot work out why this doesn't work.
$(document).ready(
function(){
// Actual jQuery goodness that moves the captions
// Set the default value for the caption
$('.boxcaption').live('click',
function(){
console.log(this);
});
});
When I run the following and click on a .boxcaption element. It returns the this value 15 times, once for each .boxcaption that is on the page. I only want to return one value, which is the one I have clicked on.
View 1 Replies
View Related
Mar 3, 2011
I have a single select dropdown in my application which is hidden for one type of user group. Before a user from this group can save any data, I have to explicitly select the default value of this dropdown for him as this dropdown is not visible to him.
Issue: In IE, this default value doesn't get selected as it is not populated but works fine in Firefox. Is this a jQuery bug?
View 1 Replies
View Related
Jun 13, 2007
Is there a way to set the default mouse position on a page when the
page loads?
View 3 Replies
View Related
Apr 28, 2010
I'm using pull downs for date but it always starts up "Dec" "31" "Year". How can I set it to start as "Month" "Date" "Year"?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Main</title>
[Code]....
View 1 Replies
View Related
Aug 17, 2004
I have a password field like this:
<input name="site_assword" type="password" class=loginform value="password" size="10" onfocus="this.value=''" onblur="if (this.value=='') {this.value='password'}">
It shows a default value which dissapears when the user clicks on the password field. However, because the input field type is set to 'password', whatever I set as the default value is masked by *
Is there any way around this to make normal text appear but still have the input box masked when they start to type the password?
View 5 Replies
View Related
May 29, 2011
I'm trying to set a cookie when a user clicks a hyper link.
Do you think I should prevent the default behavior of pressing a link first, and then set the cookie?
Or could I just set the cookie on a hyper link click event, and hope the client sets the cookie, before they are directed to another page.
View 3 Replies
View Related
Sep 14, 2010
I am looking for a way to put all CSS values on my selected elements back to its default. I was wondering if anyone has maybe done this before and if not has any idea's to get me started.
The idea is that when I use for example:
The elements within .setDefault will return to its default font/color/height/width etc... so basically all posible values.
View 6 Replies
View Related
Apr 15, 2011
So I have a wordpress site I'm just quickly prototyping the design of for my 3D portfolio.I'm using an iframe to display another html page I have for my resume. I want to use jQuery to remove the css paddingYou can see the code that wordpress outputs over herePageCodeThe iframe code in specific is
<iframe src
="/Resume/resume.html"id
="ifres
[code].....
View 4 Replies
View Related
Sep 28, 2011
sorry for the stupid question but how can i modify the href atribute of the link without having a id of the "<a>" just because it's the link of an image with an id?
<a href="anything.jpg"><img id="winkelchen" src="anythingelse.jpg" /></a>
View 2 Replies
View Related
Oct 5, 2007
I would like to know how one can syle the multifile plugin, I wouldalso like to change the placement or make the file queue invisible.
View 2 Replies
View Related
Sep 16, 2010
I suppose than my css file has different rules for the same element depending of the media @media print #image { clip: rect(auto, 700px, 1200px, auto);} @media screen
#image {clip: rect(auto, 1024px, 700px, auto);} Can I dynamically change the css data "clip" only for the @print media ?
View 2 Replies
View Related
Jul 21, 2011
I'm using Chrome and it's JSShell extension I remove the <emb> and some <iframe> tags from a lot of different sites because their annoying ads.
The I use code for most sites looks like this:
It doesn't do anything. If I don't use $(document).ready() it removes all the ads. Is there a way to do that before loading the document or am I doing something wrong.
View 1 Replies
View Related
Jan 12, 2011
I have been trying to learn JavaScript and most recently jQuery. After playing with some cool stuff like hiding, showing, animating etc... html elements I started wondering if when doing this you should do it thinking about how your layout and be careful not to break it since I noticed that when for instance if you hide a div it actually takes it out of the normal flow and if this div is part of the layout structure it could potentially break it.
Is it a common practice to think about the layout when using JavaScript/jQuery to play with elements or objects on a page?
Is this the first think before making any modification to any element that could affect the layout or is there something that I'm not aware of to prevent from taken these elements out of the normal flow?
View 2 Replies
View Related
Oct 9, 2010
I've started using the gMap plugin [URL] in my site
I have a div, with id "map" in my code and I am creating the map with the following code, passing in a JSON object for config:
$(function() {
$("#map").gMap({
latitude: 54.7,
longitude: -4,
[Code]....
I want to programatically re-center the map and add markers elsewhere in my code, but don't know how to access this JSON object to modify it.
The way I'm currently doing this is to call gMap again with some new configuration, but I don't think this is right as I think it's re-creating the map all over again.
View 2 Replies
View Related
Jul 7, 2009
I have a problem with returning html data from an ajax request. I have php method which is called via ajax and returns a long html string which consists of multiple tables, each table represents one question in a questionnaire. They display fine. I then have a button which calls a second php method that returns one individual table - identical in structure to the multiple tables that were returned previously. However,when displayed,the new table has the an inline style "display:block;" and so it screws up the way it looks. I have, at no point, declared this additional style anywhere in my code. Even if I do add an inline style of "display:table;" to the returned html, it is overwritten in the output html - so it is clearly being done by javascript.
View 3 Replies
View Related
Feb 26, 2010
I have a page that is on a secure server, lets say https://server.com and I have a link on a page /somelink.html. I am trying to use jQuery to change the link to http://server.com/somelink.html
Here is the code I have come up with:
$(document).ready(function() {
$("a[href^='https://server.com']")
.each(function(){
this.href = this.href.replace(/^https://server.com/,"http://www.server.co");
});
$("a[href^='/']")
.each(function(){
this.href = this.href.replace(/^//,
"http://www.server.co");
});
});
However, my code only seems to work in Firebug after everything has rendered. I assume that the links are changes when the Document is Ready but before the server address is attached to the links.
View 1 Replies
View Related
Nov 15, 2011
I'm currently trying to parse through all the children list items within a navigation menu so that I can trim off a trailing "|" character. I'm trying the following but its not working correctly,
$('#nav > li > ul > li').each(function() {
var str = $(this).text();
$(this).text(str.replace("|", ""));
});
View 5 Replies
View Related
Nov 10, 2010
I am trying to modify the ExpCollGroup function within Share Point (2003) and don't have access to server or ows.js file where the function lives. I want the ExpCollGroup function to run (I'm using it to expand/collapse documents in a document library), and then when finished, want to be able to run my own function like DoSomething(). The below code works but fires before the ExpCollGroup code executes. What can I do to make the ExpCollGroup function execute, and then perform my DoSomething function?
$('[id^="img_"]').click(function() {
alert(The Expand/Collapse button was pressed but the loading of documents has not yet begun');})
View 4 Replies
View Related
May 25, 2011
jQuery Splatter by Cory Schires
I was looking for something that would allow me to scatter elements (divs w/ background-images) behind text. Splatter is almost what I want, but I would need:
- no overlap in the positioning of elements
- keep the elements inside the container
- remove the default asterisk completely
As I have varying article dimensions, this keeps the splatter area the right size:
Code:
height: $("#article-text").height(),
width: $("#article-text").width()
Could the collision detection code in jQuery UI Position be used somehow?
View 1 Replies
View Related
May 25, 2011
I was looking for something that would allow me to scatter elements (divs w/ background-images) behind text. Splatter is almost what I want, but I would need:
- no overlap in the positioning of elements
- keep the elements inside the container
- remove the default asterisk completely
As I have varying article dimensions, this keeps the splatter area the right size:
Code:
height: $("#article-text").height(),
width: $("#article-text").width()
Could the collision detection code in jQuery UI Position be used somehow?
View 1 Replies
View Related
Sep 8, 2011
I am trying to add some HTML into a <p> element by using an AJAX request that gets a txt file with my HTML in it. That code works fine but the problem I get is that I need to enter in the path to the file dynamically. I guess I could use PHP on the server for this but I am not sure how (im not too good with PHP yet, but it is installed on my server). C# would work too as I have .NET configured as well (but again I dont know it very well).[code]I would like to replace the "linkHere" with the file path attribute I am grabbing from an XML file.I am doing that like this:$(this).attr('filePath').substr(3).replace("\","/")+$ 9this).attr('label');this works fine to make the path correctly but I need a way to inject this into the HTML/txt file to replace the "linkHere".I have an <img>with an onclick event that calls a function I made to do all this.
View 3 Replies
View Related
Jul 29, 2010
I've cranked up the numbers for sensitivity, interval, and timeout, and the site seems totally unresponsive to my changes. I've double-checked that hoverintent.js is being called, and it definitely is.
var cfg = {
sensitivity: 7,
interval: 5500,
[code]....
View 3 Replies
View Related
Jul 19, 2007
I have the following:
<tr onMouseOver="alert('Over a row')">
and I want to modify the event to be:
<tr onMouseOver="alert('Over THIS row')">
in other words reaching into the event, and changing some part of it.
I have tried walking through the attributes of the <truntil I reach
the onclick, then changing its value, but that throws an error.
View 1 Replies
View Related
Oct 21, 2011
By default the style of #pricea in my stylesheet is visibility="hidden";
<script type="text/javascript">
function arrow(boxName){
document.getElementById(boxName).style.visibility = "visible";
}
</script>
[Code]...
View 2 Replies
View Related
Nov 23, 2005
I have a div 'readroot' that I clone. I change the change the id and
name of the childnodes of 'readroot' to the original name plus a
number(counter).
The problem is I have i have a div 'serials' inside 'readroot' and the
childnodes of 'readroot' are not modified with the current function i have.
What is the best way to modify the childnodes of the div serials?
I guess i could put another for loop inside the for loop of the
moreFields function but i am thinking a recursive function could do it. Code:
View 2 Replies
View Related