I want to use javascript on my asp.net master page - javascript

I'm creating a new asp.net web form with master page & I've created a simple side nav bar using html css and js to use for my admin dashboard and it's working fine
But,
When I'm converting this site to a master page to use this layout for my admin dashboard page it's not allowing me to use my js with it and when I'm clicking on the hamburger Icon to open the menu it's not working and when I went to console menu to see what's the wrong it showed the following error
and from what I can understand this error means my master page is not able to read the JavaSript I've written to open the menu on click event.
How can I use JS in my master page for its layout?
I was expecting to open the menu normally but it is not opening.

Related

Dropdown containers are displayed by default when page is on loading

Hello,
I have this project built with asp net and vue, and those dropdown components are in some cshtml files. The problem is that even if I have v-if on every dropdown container and it should be displayed only if I click a specific button, I see all of them when page is on loading. Any suggestions?

How to create a sitemap that includes links of the navigation menu?

I have a website in which there is a navigation menu in each HTML page. In order to implement this, there is a JavaScript function that is called and writes the navigation panel with all the links
<!------------------------------------------------------------------------
HEADER Navigation bar
------------------------------------------------------------------------>
<script>
insertHeader();
</script>
Thus, if there is a change, it is done only in the JavaScript file and is automatically applied to dozens of pages across the website.
Problem:
I am trying to generate a sitemap with this tool. However, since my navigation panel is not written in the HTML (but inserted by JS), this tool does not recognize the navigation. As a result 99.9% of my website is not recognized. Other tools I saw also behave similar behavior.
1) How can I overcome this problem?
2) Will google crawlers see the other links I have in navigation panel?
This question is very old, but I ran into the same problem as you. I also create my nav using JavaScript. To be able to generate my sitemap, what I did was copy the JavaScript generated nav into my index.html temporarily. Then after successfully running the sitemap generator, the copied nav can be removed from index.html.

Making flash page appear on other page in angularjs

I am new to angularjs. I have a requirement which says that a flash page needs to appear before the main page is displayed which would look something like this,
Only on click of the button, I should be able to navigate to the main page. Please note that I need to be displaying a HTML page and not alert.

Wordpress Load Menu onto another installation using jquery

Hi im using Wordpress for my website and have created a plugin, in this plugin im using Jquery to load data from a website to my other one. I have managed this ok with the following code. My issue is that im trying to load a wp-nav menu which has role restriction set on certain menu items. When i load the menu on another site it shows all the navigation links except the ones which you need to be logged in to see. So all ok so far.
I created a new wordpress install an wish to load the menu into this site, i am logged in with the same role as the other site and i cannot still see the menu items which my role allows me to see on the first website. How can i load external data which will allow me to see the same menu items?
in basic terms ive created a wordpress menu and i am trying to use Jquery .Load to load it onto a seperate install of wordpress so the menus are identical. This means i only have to update one menu. I can load the menu data but it doesnt have role access etc (understandable) but want to know how to do this.
<script>
(function($) {
//Load div from address
$(function(){
var contentURI= 'http://192.168.1.99/intranet #menu-department-menu';
$('#tabs-1 #scroller').load('/php/loadexternalurl.php?url='+ contentURI);
});
})(jQuery);
</script>
<?php echo file_get_contents($_GET['url']); ?> //used to load external data

AngularJS : dialog as ng view

Assuming we have a single page with full screen background and couple of links on the top of the page.
I know how to load partial html pages in a container using angularjs and routing configuration but now the scenario is a bit different.
I'm looking for a way that each time user clicks on the application'link load the content in the modal dialog.User able to close the dialog but if user clicks link or changes routing the appropriate content to be load and show in the dialog.
My point is not just showing the dialog using angular.For example I want to if user changes the route to www.sitename.com/#about web-application loads about in the dialog and show it.
Is it possible?

Categories