It sure does :-). Here is one way of doing it - might not be the most elegant way, but would work.
On your first page, have the link as follows (just an example page):
<html>
<head>
</head>
<body>
<a href="test2.html?anchor=dsp" target="_blank">Click here to see dsp</a>
<a...
Just for clarity - Do you want to have a page with links to land on class (listing) page with a particular div already opened? Or do you want to have links to another page in the class page?
Nitin
Avoid using pixel widths in your styles. Fixed pixel widths may or may not work depending on the screen resolution, browser/client width etc. It's better to use %age widths. That way, the browser can readjust the content based on the available client width. For example, try this in your styles...
If it's possible take a look at some Javascript framework like EXT-JS (http://www.sencha.com/products/js/). Such kind of expandable/collapsible things are child's play using frameworks like these.
My suggestion would be to integrate such a framework in your code rather than re-inventing the...
If you have not already succeeded, then take a look at SpoolMail (http://spoolmail.riaforge.org/). This is a very handy plug-in that you can add to all your servers and at bulk move your emails to spool and/or re-send them.
I do not know of any better, unfortunately, but hope that helps.
Nitin
Move your document.addressForm.submit() statement into the showAddress() function. Like this:
function showAddress(address) {
if (geocoder) {
geocoder.getLatLng(
address,
function(point) {
if (!point) {
alert(address + " not found")...
Here is an example:
declare @tempCourses table (course_name varchar(55))
insert into @tempCourses values ('Physic One - SS retake - Oct')
insert into @tempCourses values ('Physic One - SS retake - Nov')
insert into @tempCourses values ('Physic One - SS retake - Dec')
insert into @tempCourses...
Hi everyone,
I need some advice on the following scenario. On one of our machines, we have Apache listening to requests on port 80 and then forwarding them to JBoss for some of our web applications. As of now the redirects are performed using the IP address of the machine, something like below...
Sorry, did not notice this earlier...try putting a semicolon after each of your classpath entries
java -verbose -classpath D:\D_ProgramFiles\JavaHelp\MyStuff; D:\D_ProgramFiles\JavaHelp\jh2_0\javahelp\lib\jhall.jar; JavaHelpTest > runlog.txt 2>&1
Nitin
I believe that your java command should be like this (classpath before the class):
java -classpath D:\D_ProgramFiles\JavaHelp\jh2.0\javahelp\lib\jhall.jar JavaHelpTest
Alternatively you can remove the classpath option from the java command and add this in your batch file before the JAVA...
Pass the reference of the textbox that you are validating to the formValidation() function. With this reference, you can shift the focus to textbox that you faced the error with. Here is an example:
<html>
<head>
<script type="text\javascript">
function...
See if this meets your purpose:
declare @sourcetable table (frrom int)
declare @desttable table (frrom int, too int)
insert into @sourcetable values (120015)
insert into @sourcetable values (120020)
insert into @sourcetable values (180040)
insert into @sourcetable values (200030)
declare...
RiverGuy, I agree with you on that this is indeed a pretty busy and somewhat poorly designed system...but different behavior of the same query on different instances of the same DB is still a bit puzzling.
While using NOLOCK is a directive from our DBA, I provided the index hint(s) with the...
Hi Guys,
I am still stuck, perplexed and (really) frustrated :-( So I was hoping if I can get some more pointers.
What is happening is that when I change UNION to UNION ALL (as suggested above) the query above starts working for a certain set of parameters, basically for users of a company...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.