JQuery :: Hiding Single Strings On A Page?
Apr 20, 2010
Is there a simple way to just hide some text in a page? Browsing the documentation I found the .hide() function. But how can I tell jQuery to hide all occurrences of a specific string? If I use the :contains() Selector I can find the text but can only hide the element that contains the text not just the text.
View 2 Replies
ADVERTISEMENT
Jan 26, 2010
I just installed a javascript library (Walter Zorn drag and drop:URL... and one of the properties included is the ability to hide or show divs and images that have been made draggable, using the the following methods:if (window.dd && dd. elements) dd.elements. divID.show()I'm wondering if I wanted to make a single button that toggled between hiding and showing a DIV....how would I combine the two methods in a single onclick event? They both work perfectly as separate events on different buttons but I cannot figure out how to combine them.I'm hope there's some way to do this w/ the "else" statement but I don't know the proper syntax.
View 1 Replies
View Related
Jan 26, 2010
I just installed a javascript library (Walter Zorn drag and drop:ttp://www.walterzorn.com/dragdrop/dragdrop_e.htm) and one of the properties included is the ability to hide or show divs and images that have been made draggable, using the the following methods: if (window.dd && dd.elements)dd.elements.divID.show()and if(window.dd && dd.elements) dd.elements.divID.hide()I'm wondering if I wanted to make a single button that toggled between hiding and showing a DIV....how would I combine the two methods in a single onclick event, to toggle visibility? They both work perfectly as separate events on different buttons but I cannot figure out how to combine them. Any help would really be appreciated. I'm hope there's some way to do this w/ the "else" statement but I don't know the proper syntax.
View 1 Replies
View Related
Aug 18, 2009
I have a set of tabs that are set with an href that adds a query string to the url such as "?t=1", meaning the first tab is selected.
Technically it works just fine but every time I click a tab it reloads the page and I'm not entirely sure how to stop this.
I'm using a jquery plugin to handle the query strings. [URL]
Here's the piece of the code that matters:
var url = location.search;
var tab = $.query.get('t');
init(tab);
[Code].....
View 4 Replies
View Related
Oct 6, 2010
greetings i am using quite a few different js plugins for my websites, and recently i have come into a problem with my <li> tag i have two menus that are using it and need two distinct css codes for them.
can i make two different css for li or inline code them what are my options? problem in a nutshell. main menu with one set of css <li> gallery images also using <li> the css of the gallery is conflicting and completely ruining the <li> for the main menu.
View 1 Replies
View Related
Jan 16, 2010
I have developed one project and in that i have taken two css now i want to add jquery effects in that, But my display is not properely adjusted and extra enlargement is done so how i can add jquery in my php project without affecting another effect? And one more thing where i can get the jquery effect codes?
View 1 Replies
View Related
Jan 30, 2010
I'm using the following css code which wrapped around a dynamically populated field;<span class="ui-widget-header platform ui-corner-all"></span>
When the span is empty I want to hide it, and I've used this jquery to do this.
However, the ui-widget-header class appears to be stopping it from hiding - if I remove this class it hides fine.
View 5 Replies
View Related
Dec 30, 2011
i have a series of pages that i only want view once and then ended ...is the a way to disable a page after a single view with jquery? or something to delay the next view to give me time to kill link.
theres pages are running off a random page selector
View 1 Replies
View Related
Jul 1, 2010
I have two Jquery scripts , I need to load them into a single page. The scripts work fineseparately, but when I try to load them into single page, only one of them works
This is my code for loading the two scripts:
View 2 Replies
View Related
Aug 18, 2009
I have a set of tabs that are set with an href that adds a query string to the url such as "?t=1", meaning the first tab is selected.
Technically it works just fine but every time I click a tab it reloads the page and I'm not entirely sure how to stop this.
I'm using a jquery plugin to handle the query strings. Here's the plugin [URL].
Here's the piece of the code that matters:
var url = location.search;
var tab = $.query.get('t');
init(tab);
function init(tab){
[Code]....
View 3 Replies
View Related
Jan 13, 2010
I have a div which will show when javascript is disabled, and I turn it off using:
$(document).ready(function(){
$("#noscript").hide()
});
However, it is appearing ont the page in Firefox for a split second when the page loads. Is there a way to stop this? The site is on localhost at the moment but I can easily upload it if need be.
View 3 Replies
View Related
Apr 15, 2009
I am not able to use jqGrid and jquery lightbox plugin in a single page. Its shows an error i.e. Lightbox was not able to find it's javascript script tag necessary for auto-inclusion. What does it mean ?
View 1 Replies
View Related
Sep 19, 2010
My site's working perfectly in the other browsers, and when I delete line 28 (see below) it works in IE but not exactly how I want. Is there a way to retain two jquery references on a single page in IE?
This is the head section of my code:
View 3 Replies
View Related
May 28, 2010
I am working on single form divided into multiple pages using <div id="">. I am using next and previous buttons <input type="button"> to navigate between these pages but I am unable to validate each page before moving to next page using next button.
I am displaying next page form by using "element.style.display = 'none' & element.style.display = 'block' " method.
How to with validation on the current page before moving to next page.
I am adding my code below:
View 4 Replies
View Related
May 7, 2009
I am using both horizontal and vertical tab menu's in a single page. And on click of horizontal tab should select the corresponding vertical tab and along with the data linked to vertical data will be displayed in different div on the page. I am stuck with how to poputale these using jquery.
View 1 Replies
View Related
Jan 11, 2012
We are building a web app that will require non-technical people to build and edit a single HTML "home page". Ideally it would allow them to add blocks of text and images to the page, change simple styles, and add and maintain links.
I don't even know how to go about searching for such a thing. It's basically like a single page simple CMS. Something like CKEditor could be used for the individual blocks, but I was wondering if there was anything out there that allow us to put this together rapidly via the power of jQuery.
I found "editease" [URL] which looks close... but it's a bit out of date and it depends upon PHP. We run ColdFusion, but could port over PHP if we needed to.
View 1 Replies
View Related
Oct 18, 2010
I'm working on hiding all of a page's content immediately via Javascript. I want to avoid using CSS to display none just incase I run into users who don't have JS enabled.
I wanted to get advice from others and see what the difference is between using jQuery actions within $(window) or $(document).ready. From what I understand, $(window).bind("load, function(){ etc. will only use the script once all contents on the page are loaded, including images?
And $(document).ready(function(), etc just requires the DOM to be ready but will still execute code even if images, etc. aren't loaded.
View 1 Replies
View Related
Jun 29, 2010
i am facing problem with JQuery Scrollable menu, i am trying to placing 2 scrollable panels on a single asp.net page. When there is one panel every thing works fine but when i copy and paste the code so my web page contains two panels vertically, the thing doesn't work, the tow panels just hanged!!
[Code]...
View 2 Replies
View Related
Sep 25, 2007
I've been learning javascript for about a week and I'm really struggling right now. This is a homework assignment to help in learning loops and arrays.
What I want to happen is when a form button is hit it will replace the array from the one previous instead of just adding to it. Hopefully that makes sense. What do I need to do? here's my code....
View 1 Replies
View Related
Jul 23, 2005
I'm trying to hide tables in the code below, but it is not working.
Could someone take a look at my code?
View 1 Replies
View Related
Oct 6, 2011
I have 1 html page and 1 flash object on it when i click on that flash object than a image should b appear and flash object will hide when i click on that image than flash object should b appear and image will hide the page should b same no other pages
View 1 Replies
View Related
Nov 24, 2011
I am looking to implement javascript to do the following: I have a checkbox that I would like to control the a entire form below it. The form would be made up of several tables, text and radio fields etc. I have tried using various solutions, but only seem to get small parts to hide and not the entire tables. So for example, I am looking for something that would work like this:
[Code]...
View 11 Replies
View Related
Apr 29, 2010
I am in the progress of building a new website; the layout and stuff is already done for the most part, but I am having a problem with the two order forms on my website. Well not the forms themselves, more with how they appear (and disappear).Like stated I have 2 forms on my website. When coming to my website they should be hidden (standard). When someone wants to order they press the link for order form A or form B.From here I am running into several problems.
Problem #1: I want each form only to appear when they click on a link.For example; when a person clicks on link 1 form A appears. If they click on link 2 form B appears.
Problem #2: If form A appears and they click on link 2, than form A should disappear and form B should be visible and the other way around.
Problem #3: Is it possible to load a page within the DIV for example I want form B to include extra-info.php.
View 4 Replies
View Related
Jan 19, 2010
How to use multiple .js files in a single web page??Is it possible to use both external .js file and inbuilt java script functions in a single page?
View 1 Replies
View Related
Feb 11, 2010
I have this script which is set to generate random anagrams of my name in rotation which works fine, but I can't work out how to put multiple instances of it on one page.
The code is:
And i'm calling the function using:
View 3 Replies
View Related
Jun 30, 2010
Ok so i'm trying to write a Greasemonkey script to change all the hrefs on a single page. The href by default looks like this:
<a href="javascript:get('246154895')" class="postid">ID</a>
What i'm trying to do is make the number from get() appear in stead of "ID". How should i get this done? I started up with this:
var posts = document.getElementsByClassname('postid');
for (i=0; i<posts.length; i++) {
//Replacing
}
But i doubt it will work, since there are other items with the class "postid" that aren't related to these tags i'm trying to change.
View 5 Replies
View Related