I have an issue with this directory/locator/finder thing we are building using Google Maps. Will allow you to locate (say) golf courses in your area or anywhere in the US. Anyway, we spent a bit of time adding all the latitudes and longitudes to show the markers on the Google map, and other information into all the javascript code. The problem is, I don't really want a competitor to be able to just find the js file or html or xml and copy it for their own site. So, is the only solution (to hide the information we've gathered) to do this via PHP
This works fine when I place this code under the html in the main source, but if I try to add this Jquery code to an external js sheet it doesnt seem to work?
Currently my js sheet is called in the header, when I move this link to the footer of my page the code works again, so Im guessing this has something to do with where the jquery code is placed in relation to the code Im trying to hide?
How I can keep my js in the header but still make the content disappear on click?
I have a very generic webpage that I created to attempt to show a rule that is used. I have used some drag and drop language that I found which enables me to drag and drop elements on the page. This is great. My problem is I have a total of 6 drag and drop items in two catagories. CML and nonCML. If one nonCML is used, I'd like two of the CML objects to disappear. (disappear could even be turning white to make them hidden). I'm very new to Javascript. Is there easy code that would say if an item from Catagory 1 is moved, have 2 items from Catagory 2 disappear?
so I want to set up some 'freebies' on my website... random verses and 'updating' content that I would like to change every so often, without the 'user' of the content (people reposting on their website) having to change the code every time (and without giving away the COMPLETE code)... am I making sense?I want to offer a different code in the 'textbox', where others grab the code than the complete 'building' code...:confused: I am so lost! :confused:I'm brand new at 'codes'
I am creating a blog and I thought it would be cool to have the Konami code in it. Basically, I would like is to either show or hide a div when the code is entered. So lets say the Div is hidden, they would enter the code and it would then show. If it was entered while the div was shown, it would then hide. Is there any way to do this? I think there would be, but I don't know how to accomplish it.
I have this bit of code that shows and hides various spans and it works great in ie. It doesn't work in Newscape of Firefox - havn't tried it in Opera. How can I change this? Code:
So I'm making an ecommerce store and I'd want to hide a product scroller and a banner if the page is any other than index.php, and I know jQuery has the .hide function, but all the examples link it to a button/link/other but I don't understand how to code a conditional statement that hides the code if the page loaded is anything else than index.php.
I am passing an araryList from c# code to javascript, but if i do viewsource on page i can see the value of Array, is there any i can hide it, dont what the user to see the values of javascript array if userdoes view source on the opage
I need to somehow hide this block of HTML code in my page. Now I have no control over the code as it comes from another site so there is no ID or anything. If the <a> or <td> tags had ID I could hide it with javascript.
I know nothing about javascript but I was able to handle the instructions to install the login/password feature: http://www.javascriptkit.com/script/script2/loginpass2.shtml
works great! however, when someone views the source code, they're able to see what the password is. additionally they can see the url of the page it would take them if they entered the password. how do i protect against this vulnerability?
I know that we can combine 2 pages into one, but i dont know what exact terms it called or say open and hide?
I have 2 pages, view.php and comment.php. inside view.php there will be a link to open comment.php. instead of doin this, i want to put the codes in one page call comment.php. i'm quiet sure that it using javascript, using id, onclick and sometimes called frames(not sure...) ?? but i dont know how to implement it. So can someone gimme any reference that i can refer to? example and solution aso can so i can get an idea on it.
I am looking for a general purpose javascript snippet that enables me to <div> or <span> HTML to make portions of the form be hidden and then appear. The form contains about 12 sections and some sections can contain subsections. When the user clicks on a checkbox, I want previously hidden text boxes, radio buttons, text, drop down menus, and additional checkboxes to appear. In some cases, clicking on a checkbox in a section can cause additional previously hidden text boxes, radio buttons, text, drop down menus, and additional checkboxes to appear.
Within each section, a list of individual names is displayed with an initial checkbox beside each name being displayed. Clicking the checkbox beside a name is what triggers the hidden info to be displayed. The server side application is written in php and the field names are assigned using brackets as the array is created. As an example the HTML checkbox beside the first name <input type='checkbox' name='sect1custname[1]' value'First Name'> The HTML for the next name woud be exactly the same except the name field would be defined as name='sect1custname[2]'. All of the other input buttons, boxes, menus, and text would use the same naming conventions so that the server side module can correctly process the data.
I am hoping to keep this as generic as possible so that we can add, change, and/or delete entire sections simply by creating the appropriate HTML and surrounding it with the correct <div> or <span>. I understand that there may need to be some javascript wrapped around the checkboxes.
If you know of , or have, or can develop the code, please send particulars to jscott4272 at comcast dot net. If there are any costs associated with the code, just let me know what they are. If you have any questions or need additional information, please email them to me.
Im developing a site for my company that will contain relevant information on sites we serve (such as login details, passwords, addresses etc). It is available locally on our intranet due to the fact we have login details and such.
Anyway on the sidebar of my site (which is run on Wordpress), I have all the sections for the sites.
When a user clicks item #1, it expands and shows all the sites in that area.
The one problem is that when the sections are clicked on, they just expand in a very plain boring way.
I need it so that there is some sort of smooth transition between opening and closing the <div> sections.
Here is the current code I have now (I tried to edit as much of the comments as possible so it will make sense):
<script>
I found it on google, and modified it without having to change anything on the sidebar itself, just a simple paste to the head section.
This code also hides other currently open sections, so that only one may stay open at a time.
I found an issue with using embed code and jquery's show()/hide () method. I am using embed code inside of a div. So it looks something like this: <div id="test"> <embed> whatever here </embed> </div>
Now on that I want a user to be able to click a button to show/hide the content. So I create a function like this: <script type="text/javascript"> function showEmbed(){ if($("#test").show()){ $("#test").hide(); } else { $("#test").show(); }} </script>
I then binded that to just a basic text link: <a href="javascript:void(0);" onclick="showEmbed();">show/hide</a> Now that works fine as far as showing/hiding the embed code. However, there is one issue with this. When I click the link it reloads the data. I do not want it to reload the data. Say for instance there is a video playing in there. If you click the link it will stop the video and when you click it again to show it will start again. How to get it not to reload the data.
I have to do in plain JavaScript something that I'm much more used to doing in jQuery.. this is for a standard tabbed-content show/hide div switcheroo.. here's the jQuery code:
'this' evidently does not refer to the element that was clicked on...also, can you refer to elements by their class name? also, is it possible to do event-binding in plain JavaScript w/o using individual id's for the clicked-on elements?
I recently learned that the <option> tags can not use the onclick attribute inside of IE.This works great for firefox, but sadly not a single version of internet explorer supports it (from what I am told via countless Google searches).I have been modifying my attempit at a solution to use the <select> tag with the attribute onchange. Maybe I am casing this wrong, or not seeing a solution as the below code does not operate in any browser, and no errors are reported back through firebug or IE.Excuse my sloopy attempt at {smarty tags} this script is written in a bunch of PHP object->vales and to save space cored the issue down to it's basics.On change of the select box, the value="5-28" is sent to javascript showBox to split the number away from the id_trips and only focus on the locations (the number before the '-' . IF the location matches the switch value then the box should show / hide or value change. The IDs are all correct I just think that there is a ' or a " or something off as I am not a javascript expert.
my SQL return values <code class="php"> //PHP VARIABLES from QUERY sample loop 1
I found a Java that could hide two <div> with an id="widescreen" on my sharepoint2007 page. But when I added a certain webpart, my script did not triger.
Then I found a jquery scirpt that I used to hide some list hedings. I noticed that the jquery script do triger even with the webpart on page, that blocked the javascript.
Im a bit lost with java and jquery, but it would be nice if I could get the java into jquery format, and try if that works beter.
Here is the Java script that hides the <div id="widescreen">:
This is the jquery that hides the headings:
Is it possible to write the Java "hidenews6()" into jquery format?
I have a simple hide and fadeIn. When you rollover a word it will reveal the definition. The problem I am having is if you move the mouse around quickly from one word to the next word sometimes it gets hung up and a definition will not hide. The result gives this hanging defintion and whatever the other definition the mouse is rolledover.
Here is the code I'm using:
There are about 70 words in a box with the definition being reveals on the right hand side. Is there a way of making sure there is always only one definition being shown?